summaryrefslogtreecommitdiffstats
path: root/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/expected/oc/50813-sp_before_oc_proto_list.m
blob: 65d13399bd72339459272986c13725f0e508f66d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
@protocol ControllerDelegate <NSObject, Controller>
@end

@protocol Controller  <NSObject>
@end

@interface CollectionViewController ()  <DataSource> {
}
@end

@interface CollectionViewController (Flow) <FlowDelegate> : NSObject
{
	NSDictionary <NSString *, NSString *> dict;
}
@end

@interface MyClass : NSObject  <Protocol_A, Protocol_B>

@end

@implementation ViewController
- (void)someMethod {
	auto const *dict = [NSMutableDictionary  < NSString *, NSString * > new];
}
@end