2 // RUN: %clang_cc1 -fmodules -fimplicit-module-maps -fmodules-cache-path=%t -x objective-c -fmodule-name=category_top -emit-module %S/Inputs/module.modulemap
3 // RUN: %clang_cc1 -fmodules -fimplicit-module-maps -fmodules-cache-path=%t -x objective-c -fmodule-name=category_left -emit-module %S/Inputs/module.modulemap
4 // RUN: %clang_cc1 -fmodules -fimplicit-module-maps -fmodules-cache-path=%t -x objective-c -fmodule-name=category_right -emit-module %S/Inputs/module.modulemap
5 // RUN: %clang_cc1 -fmodules -fimplicit-module-maps -fmodules-cache-path=%t -x objective-c -fmodule-name=category_bottom -emit-module %S/Inputs/module.modulemap
6 // RUN: %clang_cc1 -fmodules -fimplicit-module-maps -fmodules-cache-path=%t -x objective-c -fmodule-name=category_other -emit-module %S/Inputs/module.modulemap
7 // RUN: %clang_cc1 -fmodules -fimplicit-module-maps -fmodules-cache-path=%t -I %S/Inputs %s -verify
9 @import category_bottom;
11 // expected-note@Inputs/category_top.h:1 {{receiver is instance of class declared here}}
13 @interface Foo(Source)
17 void test(Foo *foo, LeftFoo *leftFoo) {
31 // Load another module that also adds categories to Foo, verify that
32 // we see those categories.
33 @import category_other;
35 void test_other(Foo *foo) {
39 // Make sure we don't see categories that should be hidden
40 void test_hidden_all_errors(Foo *foo) {
41 [foo left_sub]; // expected-warning{{instance method '-left_sub' not found (return type defaults to 'id')}}
42 foo.right_sub_prop = foo; // expected-error{{property 'right_sub_prop' not found on object of type 'Foo *'}}
43 int i = foo->right_sub_ivar; // expected-error{{'Foo' does not have a member named 'right_sub_ivar'}}
44 id<P1> p1 = foo; // expected-warning{{initializing 'id<P1>' with an expression of incompatible type 'Foo *'}}
45 id<P2> p2 = foo; // expected-warning{{initializing 'id<P2>' with an expression of incompatible type 'Foo *'}}
47 [p3 p3_method]; // expected-warning{{instance method '-p3_method' not found (return type defaults to 'id')}}
49 [p4 p4_method]; // expected-warning{{instance method '-p4_method' not found (return type defaults to 'id')}}
50 id p3p = p3.p3_prop; // expected-error{{property 'p3_prop' not found on object of type 'id<P3>'}}
51 p3p = foo.p3_prop; // expected-error{{property 'p3_prop' not found on object of type 'Foo *'}}
52 id p4p = p4.p4_prop; // expected-error{{property 'p4_prop' not found on object of type 'id<P4>'}}
53 p4p = foo.p4_prop; // expected-error{{property 'p4_prop' not found on object of type 'Foo *'}}
55 if (foo.hiddenPropertyFromExtension) { // expected-error {{property 'hiddenPropertyFromExtension' not found on object of type 'Foo *'}}
59 @import category_left.sub;
61 void test_hidden_right_errors(Foo *foo) {
63 [foo left_sub]; // okay
70 foo.right_sub_prop = foo; // expected-error{{property 'right_sub_prop' not found on object of type 'Foo *'}}
71 int i = foo->right_sub_ivar; // expected-error{{'Foo' does not have a member named 'right_sub_ivar'}}
72 id<P2> p2 = foo; // expected-warning{{initializing 'id<P2>' with an expression of incompatible type 'Foo *'}}
74 [p4 p4_method]; // expected-warning{{instance method '-p4_method' not found (return type defaults to 'id')}}
75 id p4p = p4.p4_prop; // expected-error{{property 'p4_prop' not found on object of type 'id<P4>'}}
76 p4p = foo.p4_prop; // expected-error{{property 'p4_prop' not found on object of type 'Foo *'; did you mean 'p3_prop'?}}
77 // expected-note@Inputs/category_left_sub.h:7{{'p3_prop' declared here}}
78 int hiddenFromExtension = foo.hiddenPropertyFromExtension; // expected-error {{property 'hiddenPropertyFromExtension' not found on object of type 'Foo *'}}
81 @import category_right.sub;
83 void test_hidden_okay(Foo *foo) {
85 foo.right_sub_prop = foo;
86 int i = foo->right_sub_ivar;
97 if (foo.hiddenPropertyFromExtension) {