summaryrefslogtreecommitdiffstats
path: root/debian/uncrustify-trinity/uncrustify-trinity-0.76.0/tests/expected/oc/50627-method_ends_semicolon.m
blob: b1ca36fa773d601012975174058df135ac951fdd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#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