Richard Smith | 65ebb4a | 2015-03-26 04:09:53 +0000 | [diff] [blame] | 1 | // RUN: rm -rf %t |
Richard Smith | 47972af | 2015-06-16 00:08:24 +0000 | [diff] [blame] | 2 | // RUN: %clang_cc1 -x c++ -std=c++11 -fmodules-cache-path=%t -fmodules -fimplicit-module-maps -I %S/Inputs/submodules-merge-defs %s -verify -fno-modules-error-recovery -DTEXTUAL |
| 3 | // RUN: %clang_cc1 -x c++ -std=c++11 -fmodules-cache-path=%t -fmodules -fimplicit-module-maps -I %S/Inputs/submodules-merge-defs %s -verify -fno-modules-error-recovery |
| 4 | // RUN: %clang_cc1 -x c++ -std=c++11 -fmodules-cache-path=%t -fmodules -fimplicit-module-maps -I %S/Inputs/submodules-merge-defs %s -verify -fno-modules-error-recovery -fmodules-local-submodule-visibility -DTEXTUAL |
| 5 | // RUN: %clang_cc1 -x c++ -std=c++11 -fmodules-cache-path=%t -fmodules -fimplicit-module-maps -I %S/Inputs/submodules-merge-defs %s -verify -fno-modules-error-recovery -fmodules-local-submodule-visibility |
Richard Smith | 5e3fb76 | 2015-11-12 21:55:58 +0000 | [diff] [blame] | 6 | // RUN: %clang_cc1 -x c++ -std=c++11 -fmodules-cache-path=%t -fimplicit-module-maps -I %S/Inputs/submodules-merge-defs %s -verify -fno-modules-error-recovery -fmodules-local-submodule-visibility -DTEXTUAL -DEARLY_INDIRECT_INCLUDE |
Richard Smith | 47972af | 2015-06-16 00:08:24 +0000 | [diff] [blame] | 7 | // RUN: %clang_cc1 -x c++ -std=c++11 -fmodules-cache-path=%t -fmodules -fimplicit-module-maps -I %S/Inputs/submodules-merge-defs %s -verify -fno-modules-error-recovery -fmodules-local-submodule-visibility -fmodule-feature use_defs_twice -DIMPORT_USE_2 |
Richard Smith | 65ebb4a | 2015-03-26 04:09:53 +0000 | [diff] [blame] | 8 | |
| 9 | // Trigger import of definitions, but don't make them visible. |
| 10 | #include "empty.h" |
Richard Smith | 00be6d0 | 2015-06-11 03:05:39 +0000 | [diff] [blame] | 11 | #ifdef EARLY_INDIRECT_INCLUDE |
| 12 | #include "indirect.h" |
| 13 | #endif |
Richard Smith | 65ebb4a | 2015-03-26 04:09:53 +0000 | [diff] [blame] | 14 | |
Richard Smith | 97135cc | 2015-11-12 22:19:45 +0000 | [diff] [blame] | 15 | A pre_a; |
Richard Smith | f2b1eb9 | 2015-06-15 20:15:48 +0000 | [diff] [blame] | 16 | #ifdef IMPORT_USE_2 |
| 17 | // expected-error-re@-2 {{must be imported from one of {{.*}}stuff.use{{.*}}stuff.use-2}} |
| 18 | #elif EARLY_INDIRECT_INCLUDE |
| 19 | // expected-error@-4 {{must be imported from module 'merged-defs'}} |
| 20 | #else |
| 21 | // expected-error@-6 {{must be imported from module 'stuff.use'}} |
| 22 | #endif |
Richard Smith | 9a71c99 | 2015-03-27 20:16:58 +0000 | [diff] [blame] | 23 | // expected-note@defs.h:1 +{{here}} |
Richard Smith | 97135cc | 2015-11-12 22:19:45 +0000 | [diff] [blame] | 24 | extern class A pre_a2; |
Richard Smith | 82b8d4e | 2015-12-18 22:19:11 +0000 | [diff] [blame] | 25 | int pre_use_a = use_a(pre_a2); // expected-error 2{{'A' must be imported}} expected-error {{'use_a' must be imported}} |
Richard Smith | a143107 | 2015-06-12 01:32:13 +0000 | [diff] [blame] | 26 | // expected-note@defs.h:2 +{{here}} |
Richard Smith | 65ebb4a | 2015-03-26 04:09:53 +0000 | [diff] [blame] | 27 | |
Richard Smith | be3980b | 2015-03-27 00:41:57 +0000 | [diff] [blame] | 28 | B::Inner2 pre_bi; // expected-error +{{must be imported}} |
| 29 | // expected-note@defs.h:4 +{{here}} |
Richard Smith | 6dc8ae1 | 2015-08-17 20:24:17 +0000 | [diff] [blame] | 30 | // expected-note@defs.h:17 +{{here}} |
Richard Smith | 97135cc | 2015-11-12 22:19:45 +0000 | [diff] [blame] | 31 | void pre_bfi(B b) { // expected-error +{{must be imported}} |
| 32 | b.f<int>(); // expected-error +{{}} |
Richard Smith | 5327b89 | 2015-07-01 19:32:54 +0000 | [diff] [blame] | 33 | } |
Richard Smith | be3980b | 2015-03-27 00:41:57 +0000 | [diff] [blame] | 34 | |
| 35 | C_Base<1> pre_cb1; // expected-error +{{must be imported}} |
Richard Smith | 6dc8ae1 | 2015-08-17 20:24:17 +0000 | [diff] [blame] | 36 | // expected-note@defs.h:23 +{{here}} |
Richard Smith | 97135cc | 2015-11-12 22:19:45 +0000 | [diff] [blame] | 37 | C1 pre_c1; // expected-error +{{must be imported}} |
Richard Smith | 6dc8ae1 | 2015-08-17 20:24:17 +0000 | [diff] [blame] | 38 | // expected-note@defs.h:25 +{{here}} |
Richard Smith | 97135cc | 2015-11-12 22:19:45 +0000 | [diff] [blame] | 39 | C2 pre_c2; // expected-error +{{must be imported}} |
Richard Smith | 6dc8ae1 | 2015-08-17 20:24:17 +0000 | [diff] [blame] | 40 | // expected-note@defs.h:26 +{{here}} |
Richard Smith | be3980b | 2015-03-27 00:41:57 +0000 | [diff] [blame] | 41 | |
Richard Smith | a523022 | 2015-03-27 01:37:43 +0000 | [diff] [blame] | 42 | D::X pre_dx; // expected-error +{{must be imported}} |
Richard Smith | 6dc8ae1 | 2015-08-17 20:24:17 +0000 | [diff] [blame] | 43 | // expected-note@defs.h:28 +{{here}} |
| 44 | // expected-note@defs.h:29 +{{here}} |
Richard Smith | 97135cc | 2015-11-12 22:19:45 +0000 | [diff] [blame] | 45 | int pre_use_dx = use_dx(pre_dx); // ignored; pre_dx is invalid |
Richard Smith | a523022 | 2015-03-27 01:37:43 +0000 | [diff] [blame] | 46 | |
Richard Smith | d6aab59 | 2015-03-27 21:57:41 +0000 | [diff] [blame] | 47 | int pre_e = E(0); // expected-error {{must be imported}} |
Richard Smith | 6dc8ae1 | 2015-08-17 20:24:17 +0000 | [diff] [blame] | 48 | // expected-note@defs.h:32 +{{here}} |
Richard Smith | d6aab59 | 2015-03-27 21:57:41 +0000 | [diff] [blame] | 49 | |
| 50 | int pre_ff = F<int>().f(); // expected-error +{{must be imported}} |
Richard Smith | 82b8d4e | 2015-12-18 22:19:11 +0000 | [diff] [blame] | 51 | int pre_fg = F<int>().g<int>(); // expected-error +{{must be imported}} expected-error 2{{expected}} |
Richard Smith | 6dc8ae1 | 2015-08-17 20:24:17 +0000 | [diff] [blame] | 52 | // expected-note@defs.h:34 +{{here}} |
Richard Smith | d6aab59 | 2015-03-27 21:57:41 +0000 | [diff] [blame] | 53 | |
Richard Smith | 75ea855 | 2015-06-17 23:07:50 +0000 | [diff] [blame] | 54 | G::A pre_ga // expected-error +{{must be imported}} |
| 55 | = G::a; // expected-error +{{must be imported}} |
Richard Smith | 6dc8ae1 | 2015-08-17 20:24:17 +0000 | [diff] [blame] | 56 | // expected-note@defs.h:49 +{{here}} |
| 57 | // expected-note@defs.h:50 +{{here}} |
Richard Smith | 5327b89 | 2015-07-01 19:32:54 +0000 | [diff] [blame] | 58 | decltype(G::h) pre_gh = G::h; // expected-error +{{must be imported}} |
Richard Smith | 6dc8ae1 | 2015-08-17 20:24:17 +0000 | [diff] [blame] | 59 | // expected-note@defs.h:51 +{{here}} |
Richard Smith | 75ea855 | 2015-06-17 23:07:50 +0000 | [diff] [blame] | 60 | |
Richard Smith | 35c1df5 | 2015-06-17 20:16:32 +0000 | [diff] [blame] | 61 | J<> pre_j; // expected-error {{declaration of 'J' must be imported}} |
| 62 | #ifdef IMPORT_USE_2 |
Richard Smith | 63e09bf | 2015-06-17 20:39:41 +0000 | [diff] [blame] | 63 | // expected-error-re@-2 {{default argument of 'J' must be imported from one of {{.*}}stuff.use{{.*}}stuff.use-2}} |
Richard Smith | 35c1df5 | 2015-06-17 20:16:32 +0000 | [diff] [blame] | 64 | #elif EARLY_INDIRECT_INCLUDE |
Richard Smith | 63e09bf | 2015-06-17 20:39:41 +0000 | [diff] [blame] | 65 | // expected-error@-4 {{default argument of 'J' must be imported from module 'merged-defs'}} |
Richard Smith | 35c1df5 | 2015-06-17 20:16:32 +0000 | [diff] [blame] | 66 | #else |
Richard Smith | 63e09bf | 2015-06-17 20:39:41 +0000 | [diff] [blame] | 67 | // expected-error@-6 {{default argument of 'J' must be imported from module 'stuff.use'}} |
Richard Smith | 35c1df5 | 2015-06-17 20:16:32 +0000 | [diff] [blame] | 68 | #endif |
Richard Smith | 6dc8ae1 | 2015-08-17 20:24:17 +0000 | [diff] [blame] | 69 | // expected-note@defs.h:58 +{{here}} |
Richard Smith | c785276 | 2015-06-11 23:46:11 +0000 | [diff] [blame] | 70 | |
Richard Smith | 97135cc | 2015-11-12 22:19:45 +0000 | [diff] [blame] | 71 | ScopedEnum pre_scopedenum; // expected-error {{must be imported}} |
| 72 | // expected-note@defs.h:105 0-1{{here}} |
| 73 | // expected-note@defs.h:106 0-1{{here}} |
Richard Smith | b1d8ea4 | 2015-07-08 21:49:31 +0000 | [diff] [blame] | 74 | enum ScopedEnum : int; |
| 75 | ScopedEnum pre_scopedenum_declared; // ok |
| 76 | |
Richard Smith | 65ebb4a | 2015-03-26 04:09:53 +0000 | [diff] [blame] | 77 | // Make definitions from second module visible. |
Richard Smith | 0279375 | 2015-03-27 21:16:39 +0000 | [diff] [blame] | 78 | #ifdef TEXTUAL |
Richard Smith | 65ebb4a | 2015-03-26 04:09:53 +0000 | [diff] [blame] | 79 | #include "import-and-redefine.h" |
Richard Smith | f2b1eb9 | 2015-06-15 20:15:48 +0000 | [diff] [blame] | 80 | #elif defined IMPORT_USE_2 |
| 81 | #include "use-defs-2.h" |
Richard Smith | 0279375 | 2015-03-27 21:16:39 +0000 | [diff] [blame] | 82 | #else |
| 83 | #include "merged-defs.h" |
| 84 | #endif |
Richard Smith | 65ebb4a | 2015-03-26 04:09:53 +0000 | [diff] [blame] | 85 | |
| 86 | A post_a; |
Richard Smith | 9a71c99 | 2015-03-27 20:16:58 +0000 | [diff] [blame] | 87 | int post_use_a = use_a(post_a); |
Richard Smith | be3980b | 2015-03-27 00:41:57 +0000 | [diff] [blame] | 88 | B::Inner2 post_bi; |
Richard Smith | 5327b89 | 2015-07-01 19:32:54 +0000 | [diff] [blame] | 89 | void post_bfi(B b) { |
| 90 | b.f<int>(); |
| 91 | } |
Richard Smith | be3980b | 2015-03-27 00:41:57 +0000 | [diff] [blame] | 92 | C_Base<1> post_cb1; |
| 93 | C1 c1; |
| 94 | C2 c2; |
Richard Smith | a523022 | 2015-03-27 01:37:43 +0000 | [diff] [blame] | 95 | D::X post_dx; |
Richard Smith | 9a71c99 | 2015-03-27 20:16:58 +0000 | [diff] [blame] | 96 | int post_use_dx = use_dx(post_dx); |
Richard Smith | d6aab59 | 2015-03-27 21:57:41 +0000 | [diff] [blame] | 97 | int post_e = E(0); |
| 98 | int post_ff = F<char>().f(); |
| 99 | int post_fg = F<char>().g<int>(); |
Richard Smith | 75ea855 | 2015-06-17 23:07:50 +0000 | [diff] [blame] | 100 | G::A post_ga = G::a; |
| 101 | decltype(G::h) post_gh = G::h; |
Richard Smith | c785276 | 2015-06-11 23:46:11 +0000 | [diff] [blame] | 102 | J<> post_j; |
| 103 | template<typename T, int N, template<typename> class K> struct J; |
| 104 | J<> post_j2; |
Richard Smith | 5293379 | 2015-06-16 21:57:05 +0000 | [diff] [blame] | 105 | FriendDefArg::Y<int> friend_def_arg; |
Richard Smith | afe800c | 2015-06-17 22:13:23 +0000 | [diff] [blame] | 106 | FriendDefArg::D<> friend_def_arg_d; |
Richard Smith | 8cbd895 | 2015-08-04 02:05:09 +0000 | [diff] [blame] | 107 | int post_anon_x_n = Anon::X().n; |
Richard Smith | 529ecb2 | 2015-06-22 21:15:01 +0000 | [diff] [blame] | 108 | |
Richard Smith | da6c234 | 2015-07-01 23:19:58 +0000 | [diff] [blame] | 109 | MergeFunctionTemplateSpecializations::X<int>::Q<char> xiqc; |
| 110 | |
Richard Smith | 529ecb2 | 2015-06-22 21:15:01 +0000 | [diff] [blame] | 111 | #ifdef TEXTUAL |
| 112 | #include "use-defs.h" |
| 113 | void use_static_inline() { StaticInline::g({}); } |
Richard Smith | 5e3fb76 | 2015-11-12 21:55:58 +0000 | [diff] [blame] | 114 | #ifdef EARLY_INDIRECT_INCLUDE |
| 115 | // expected-warning@-2 {{ambiguous use of internal linkage declaration 'g' defined in multiple modules}} |
| 116 | // expected-note@defs.h:71 {{declared here in module 'redef'}} |
| 117 | // expected-note@defs.h:71 {{declared here in module 'stuff.use'}} |
| 118 | #endif |
Richard Smith | 26210db | 2015-11-13 03:52:13 +0000 | [diff] [blame] | 119 | int use_anon_enum = G::g; |
| 120 | #ifdef EARLY_INDIRECT_INCLUDE |
| 121 | // expected-warning@-2 3{{ambiguous use of internal linkage declaration 'g' defined in multiple modules}} |
| 122 | // FIXME: These notes are produced, but -verify can't match them? |
| 123 | // FIXME-note@defs.h:51 3{{declared here in module 'redef'}} |
| 124 | // FIXME-note@defs.h:51 3{{declared here in module 'stuff.use'}} |
| 125 | #endif |
| 126 | int use_named_enum = G::i; |
Richard Smith | 529ecb2 | 2015-06-22 21:15:01 +0000 | [diff] [blame] | 127 | #endif |