summaryrefslogtreecommitdiffstats
path: root/debian/uncrustify-trinity/uncrustify-trinity-0.73.0/tests/expected/oc/50815-sp_before_oc_proto_list.m
blob: 1fef0cc43fed54f59dd4ea954c13d1f4f21177b9 (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