summaryrefslogtreecommitdiffstats
path: root/debian/uncrustify-trinity/uncrustify-trinity-0.76.0/tests/input/oc/sp_before_oc_proto_list.m
blob: c0d96bdbd6a8e0979a14361315fb1bf0e3e91cc1 (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