1// Note: the run lines follow their respective tests, since line/column
2// matter in this test.
3
4@interface C
5- (int)instanceMethod3:(int)x;
6+ (int)classMethod3:(float)f;
7@end
8
9void msg_id(id x) {
10  [id classMethod1:1.0];
11  [x instanceMethod1:5];
12}
13
14// Build the precompiled header
15// RUN: %clang -x objective-c-header -o %t.h.pch %S/Inputs/complete-pch.h
16
17// Run the actual tests
18// RUN: c-index-test -code-completion-at=%s:10:7 -include %t.h %s | FileCheck -check-prefix=CHECK-CC1 %s
19// CHECK-CC1: ObjCClassMethodDecl:{ResultType int}{TypedText classMethod1:}{Placeholder (double)}
20// CHECK-CC1: ObjCClassMethodDecl:{ResultType int}{TypedText classMethod2:}{Placeholder (float)}
21// CHECK-CC1: ObjCClassMethodDecl:{ResultType int}{TypedText classMethod3:}{Placeholder (float)}
22
23// RUN: c-index-test -code-completion-at=%s:11:6 -include %t.h %s | FileCheck -check-prefix=CHECK-CC2 %s
24// CHECK-CC2: ObjCInstanceMethodDecl:{ResultType int}{TypedText instanceMethod1:}{Placeholder (int)}
25// CHECK-CC2: ObjCInstanceMethodDecl:{ResultType int}{TypedText instanceMethod2:}{Placeholder (int)}
26// CHECK-CC2: ObjCInstanceMethodDecl:{ResultType int}{TypedText instanceMethod3:}{Placeholder (int)}
27