1 // RUN: rm -rf %t 2 // RUN: %clang_cc1 -fmodules-cache-path=%t -fmodules -I %S/Inputs %s -verify 3 4 5 @import MethodPoolA; 6 7 @interface D 8 - (void)method5:(D*)obj; 9 @end 10 11 // in other file: // expected-note@7{{using}} 12 // in other file: expected-note@12{{also found}} 13 14 void testMethod1(id object) { 15 [object method1]; 16 } 17 18 void testMethod2(id object) { 19 [object method2:1]; 20 } 21 22 void testMethod4(id object) { 23 [object method4]; // expected-warning{{instance method '-method4' not found (return type defaults to 'id')}} 24 } 25 26 void testMethod5(id object, D* d) { 27 [object method5:d]; 28 } 29 30 @import MethodPoolB; 31 32 void testMethod1Again(id object) { 33 [object method1]; 34 } 35 36 void testMethod2Again(id object) { 37 [object method2:1]; // expected-warning{{multiple methods named 'method2:' found}} 38 } 39 40 void testMethod3(id object) { 41 [object method3]; // expected-warning{{instance method '-method3' not found (return type defaults to 'id')}} 42 } 43 44 @import MethodPoolB.Sub; 45 46 void testMethod3Again(id object) { 47 char *str = [object method3]; // okay: only found in MethodPoolB.Sub 48 } 49 50 @import MethodPoolA.Sub; 51 52 void testMethod3AgainAgain(id object) { 53 [object method3]; // expected-warning{{multiple methods named 'method3' found}} 54 // expected-note@2{{using}} 55 // expected-note@2{{also found}} 56 } 57 58 void testMethod4Again(id object) { 59 [object method4]; 60 } 61 62 void testMethod5Again(id object, D* d) { 63 [object method5:d]; 64 } 65