aboutsummaryrefslogtreecommitdiff
path: root/test/Modules/lookup.m
diff options
context:
space:
mode:
Diffstat (limited to 'test/Modules/lookup.m')
-rw-r--r--test/Modules/lookup.m19
1 files changed, 19 insertions, 0 deletions
diff --git a/test/Modules/lookup.m b/test/Modules/lookup.m
new file mode 100644
index 000000000000..d45f93661b9a
--- /dev/null
+++ b/test/Modules/lookup.m
@@ -0,0 +1,19 @@
+
+// lookup_left.h: expected-note{{using}}
+// lookup_right.h: expected-note{{also found}}
+__import_module__ lookup_left_objc;
+__import_module__ 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_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 -fmodule-cache-path %T -fdisable-module-hash -verify %s
+// RUN: %clang_cc1 -ast-print -x objective-c -fmodule-cache-path %T -fdisable-module-hash %s | FileCheck -check-prefix=CHECK-PRINT %s
+
+// CHECK-PRINT: - (int) method;
+// CHECK-PRINT: - (double) method
+// CHECK-PRINT: void test(id x)
+