blob: 4c29f2796b5c7243967ff8c543c6bc352abc90fd [file] [log] [blame]
Douglas Gregor719770d2010-04-06 17:30:22 +00001// 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
Amaury de la Vieuville09098592013-09-13 11:02:31 +000014// REQUIRES: native
15
Douglas Gregor719770d2010-04-06 17:30:22 +000016// Build the precompiled header
17// RUN: %clang -x objective-c-header -o %t.h.pch %S/Inputs/complete-pch.h
18
19// Run the actual tests
20// RUN: c-index-test -code-completion-at=%s:10:7 -include %t.h %s | FileCheck -check-prefix=CHECK-CC1 %s
Douglas Gregoraba48082010-08-29 19:47:46 +000021// CHECK-CC1: ObjCClassMethodDecl:{ResultType int}{TypedText classMethod1:}{Placeholder (double)}
22// CHECK-CC1: ObjCClassMethodDecl:{ResultType int}{TypedText classMethod2:}{Placeholder (float)}
23// CHECK-CC1: ObjCClassMethodDecl:{ResultType int}{TypedText classMethod3:}{Placeholder (float)}
Douglas Gregor719770d2010-04-06 17:30:22 +000024
25// RUN: c-index-test -code-completion-at=%s:11:6 -include %t.h %s | FileCheck -check-prefix=CHECK-CC2 %s
Douglas Gregoraba48082010-08-29 19:47:46 +000026// CHECK-CC2: ObjCInstanceMethodDecl:{ResultType int}{TypedText instanceMethod1:}{Placeholder (int)}
27// CHECK-CC2: ObjCInstanceMethodDecl:{ResultType int}{TypedText instanceMethod2:}{Placeholder (int)}
28// CHECK-CC2: ObjCInstanceMethodDecl:{ResultType int}{TypedText instanceMethod3:}{Placeholder (int)}