summaryrefslogtreecommitdiffstats
path: root/debian/uncrustify-trinity/uncrustify-trinity-0.75.0/tests/input/oc/method_ends_semicolon.m
blob: e3c5637eaf7f571869034a7d0626f37e61d539c2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#import <Foundation/Foundation.h>

@interface TestClass

+ (void)cancelRequest:(id)request;

@end

@implementation TestClass

// Occasionally there will be user errors where someone will
// copy the interface method declaration to implementation
// and leaves the semicolon
+ (void)cancelRequest:(id)request;
{
}

@end