blob: cb507e2be34ee4d1c93e28079770b3672298cd3f [file] [log] [blame]
Douglas Gregor83482d12010-08-24 16:15:59 +00001// The line and column layout of this test is significant. Run lines
2// are at the end.
3typedef void (^block_t)(float f, double d);
4void f(int (^block)(int x, int y));
5void g(block_t b);
6
7void test_f() {
8
9}
10
11@interface A
12- method:(int (^)(int x, int y))b;
13- method2:(block_t)b;
14@end
15
16void test_A(A *a) {
17 [a method:0];
18}
Douglas Gregor38276252010-09-08 22:47:51 +000019
20@interface B
21- method3:(int (^)(void))b;
22@end
23
24void test_B(B *b) {
25 [b method3:^int(void){ return 0; }];
26}
27
Douglas Gregorc2760bc2010-10-02 23:49:58 +000028@interface C
Douglas Gregoree1c68a2011-10-18 04:23:19 +000029- method4:(void(^)(void))arg;
30- method5:(void(^)())arg5;
Douglas Gregorc2760bc2010-10-02 23:49:58 +000031@end
32
33void test_C(C *c) {
34 [c method4:^{}];
35}
36
Douglas Gregoree1c68a2011-10-18 04:23:19 +000037@interface D
38- method6:(void(^)(block_t block))arg;
39@end
40
41void test_D(D *d) {
42 [d method6:0];
43}
44
Douglas Gregor83482d12010-08-24 16:15:59 +000045// RUN: c-index-test -code-completion-at=%s:8:1 %s | FileCheck -check-prefix=CHECK-CC1 %s
Douglas Gregorc2760bc2010-10-02 23:49:58 +000046// CHECK-CC1: FunctionDecl:{ResultType void}{TypedText f}{LeftParen (}{Placeholder ^int(int x, int y)block}{RightParen )} (50)
47// CHECK-CC1: FunctionDecl:{ResultType void}{TypedText g}{LeftParen (}{Placeholder ^(float f, double d)b}{RightParen )} (50)
Douglas Gregor83482d12010-08-24 16:15:59 +000048// RUN: c-index-test -code-completion-at=%s:17:6 %s | FileCheck -check-prefix=CHECK-CC2 %s
Douglas Gregor8ec904c2010-10-19 00:03:23 +000049// CHECK-CC2: ObjCInstanceMethodDecl:{ResultType id}{TypedText method2:}{Placeholder ^(float f, double d)b} (35)
50// CHECK-CC2: ObjCInstanceMethodDecl:{ResultType id}{TypedText method:}{Placeholder ^int(int x, int y)b} (35)
Douglas Gregor38276252010-09-08 22:47:51 +000051// RUN: c-index-test -code-completion-at=%s:25:6 %s | FileCheck -check-prefix=CHECK-CC3 %s
Douglas Gregor8ec904c2010-10-19 00:03:23 +000052// CHECK-CC3: ObjCInstanceMethodDecl:{ResultType id}{TypedText method3:}{Placeholder ^int(void)b} (35)
Douglas Gregor830072c2011-02-15 22:37:09 +000053// RUN: c-index-test -code-completion-at=%s:34:6 %s | FileCheck -check-prefix=CHECK-CC4 %s
Douglas Gregor8ec904c2010-10-19 00:03:23 +000054// CHECK-CC4: ObjCInstanceMethodDecl:{ResultType id}{TypedText method4:}{Placeholder ^(void)arg} (35)
Douglas Gregor830072c2011-02-15 22:37:09 +000055// CHECK-CC4: ObjCInstanceMethodDecl:{ResultType id}{TypedText method5:}{Placeholder ^(void)arg5} (35)
Douglas Gregor75ab4142010-10-18 21:34:55 +000056// RUN: c-index-test -code-completion-at=%s:25:15 %s | FileCheck -check-prefix=CHECK-CC5 %s
57// CHECK-CC5: TypedefDecl:{TypedText block_t} (50)
58// CHECK-CC5: TypedefDecl:{TypedText Class} (50)
59// CHECK-CC5-NOT: test_A
60// CHECK-CC5: {TypedText union} (50)
61
Douglas Gregoree1c68a2011-10-18 04:23:19 +000062// RUN: c-index-test -code-completion-at=%s:42:6 %s | FileCheck -check-prefix=CHECK-CC6 %s
63// CHECK-CC6: ObjCInstanceMethodDecl:{ResultType id}{TypedText method6:}{Placeholder ^(block_t block)arg} (35)
64