diff options
Diffstat (limited to 'test/Modules/lookup.m')
-rw-r--r-- | test/Modules/lookup.m | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/test/Modules/lookup.m b/test/Modules/lookup.m index 85f1dd95d7..48d0ba9a37 100644 --- a/test/Modules/lookup.m +++ b/test/Modules/lookup.m @@ -1,15 +1,17 @@ // lookup_left.h: expected-note{{using}} // lookup_right.h: expected-note{{also found}} +__import__ lookup_left_objc; +__import__ lookup_right_objc; void test(id x) { [x method]; // expected-warning{{multiple methods named 'method' found}} } -// RUN: %clang_cc1 -emit-module -x objective-c -o %t_lookup_left.h.pch %S/Inputs/lookup_left.h -// RUN: %clang_cc1 -emit-module -x objective-c -o %t_lookup_right.h.pch %S/Inputs/lookup_right.h -// RUN: %clang_cc1 -x objective-c -import-module %t_lookup_left.h.pch -import-module %t_lookup_right.h.pch -verify %s -// RUN: %clang_cc1 -ast-print -x objective-c -import-module %t_lookup_left.h.pch -import-module %t_lookup_right.h.pch %s | FileCheck -check-prefix=CHECK-PRINT %s +// RUN: %clang_cc1 -emit-module -x objective-c -o %T/lookup_left_objc.pcm %S/Inputs/lookup_left.h +// RUN: %clang_cc1 -emit-module -x objective-c -o %T/lookup_right_objc.pcm %S/Inputs/lookup_right.h +// RUN: %clang_cc1 -x objective-c -I %T -verify %s +// RUN: %clang_cc1 -ast-print -x objective-c -I %T %s | FileCheck -check-prefix=CHECK-PRINT %s // CHECK-PRINT: - (int) method; // CHECK-PRINT: - (double) method |