summaryrefslogtreecommitdiffstats
path: root/debian/uncrustify-trinity/uncrustify-trinity-0.78.0/tests/input/oc/attribute_specifier_seqs.mm
blob: c9b6f24d66f48f72c35c7b93661d261e50e11c2f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
int w1[1];
int w2 [[maybe_unused]] = 0;
int w3 [[foo(w1[0])]];												// unknown attribute foo
int w4 [[foo((w1[0]))]];											// unknown attribute foo
int w5 [[foo(w1[0] [[maybe_unused]])]];								// unknown attribute foo
int w6 [[foo(w1[0] [[maybe_unused]]), [[deprecated]]]];				// expected ] before [[deprecated
int w7 [[w1[0]]] = 0;												// expected ] before [ in w1[
int w8 [[ [[maybe_unused]] ]];										// expected ] before [[maybe_unused
int w9 [ [ foo ] ] = 0;

@implementation Foo
- (void) message {
Foo* foo = [[Foo alloc] init];
}
@end

Foo* foo = [[Foo alloc] init];

[[Foo sharedInstance] broadcast:[world hello]];