Richard Smith | 65ebb4a | 2015-03-26 04:09:53 +0000 | [diff] [blame] | 1 | // RUN: rm -rf %t |
Richard Smith | 0279375 | 2015-03-27 21:16:39 +0000 | [diff] [blame] | 2 | // RUN: %clang_cc1 -x c++ -std=c++11 -fmodules-cache-path=%t -fmodules -I %S/Inputs/submodules-merge-defs %s -verify -fno-modules-error-recovery -DTEXTUAL |
Richard Smith | be3980b | 2015-03-27 00:41:57 +0000 | [diff] [blame] | 3 | // RUN: %clang_cc1 -x c++ -std=c++11 -fmodules-cache-path=%t -fmodules -I %S/Inputs/submodules-merge-defs %s -verify -fno-modules-error-recovery |
Richard Smith | 4241314 | 2015-05-15 20:05:43 +0000 | [diff] [blame] | 4 | // RUN: %clang_cc1 -x c++ -std=c++11 -fmodules-cache-path=%t -fmodules -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 -I %S/Inputs/submodules-merge-defs %s -verify -fno-modules-error-recovery -fmodules-local-submodule-visibility |
Richard Smith | 00be6d0 | 2015-06-11 03:05:39 +0000 | [diff] [blame] | 6 | // RUN: %clang_cc1 -x c++ -std=c++11 -fmodules-cache-path=%t -fmodule-maps -I %S/Inputs/submodules-merge-defs %s -verify -fno-modules-error-recovery -fmodules-local-submodule-visibility -DTEXTUAL -DEARLY_INDIRECT_INCLUDE |
Richard Smith | 65ebb4a | 2015-03-26 04:09:53 +0000 | [diff] [blame] | 7 | |
| 8 | // Trigger import of definitions, but don't make them visible. |
| 9 | #include "empty.h" |
Richard Smith | 00be6d0 | 2015-06-11 03:05:39 +0000 | [diff] [blame] | 10 | #ifdef EARLY_INDIRECT_INCLUDE |
| 11 | #include "indirect.h" |
| 12 | #endif |
Richard Smith | 65ebb4a | 2015-03-26 04:09:53 +0000 | [diff] [blame] | 13 | |
| 14 | A pre_a; // expected-error {{must be imported}} expected-error {{must use 'struct'}} |
Richard Smith | 9a71c99 | 2015-03-27 20:16:58 +0000 | [diff] [blame] | 15 | // expected-note@defs.h:1 +{{here}} |
| 16 | // FIXME: We should warn that use_a is being used without being imported. |
| 17 | int pre_use_a = use_a(pre_a); // expected-error {{'A' must be imported}} |
Richard Smith | 65ebb4a | 2015-03-26 04:09:53 +0000 | [diff] [blame] | 18 | |
Richard Smith | be3980b | 2015-03-27 00:41:57 +0000 | [diff] [blame] | 19 | B::Inner2 pre_bi; // expected-error +{{must be imported}} |
| 20 | // expected-note@defs.h:4 +{{here}} |
Richard Smith | d6aab59 | 2015-03-27 21:57:41 +0000 | [diff] [blame] | 21 | // expected-note@defs.h:11 +{{here}} |
Richard Smith | be3980b | 2015-03-27 00:41:57 +0000 | [diff] [blame] | 22 | |
| 23 | C_Base<1> pre_cb1; // expected-error +{{must be imported}} |
Richard Smith | be3980b | 2015-03-27 00:41:57 +0000 | [diff] [blame] | 24 | // expected-note@defs.h:15 +{{here}} |
Richard Smith | d6aab59 | 2015-03-27 21:57:41 +0000 | [diff] [blame] | 25 | C1 pre_c1; // expected-error +{{must be imported}} expected-error {{must use 'struct'}} |
| 26 | // expected-note@defs.h:17 +{{here}} |
Richard Smith | be3980b | 2015-03-27 00:41:57 +0000 | [diff] [blame] | 27 | C2 pre_c2; // expected-error +{{must be imported}} expected-error {{must use 'struct'}} |
Richard Smith | d6aab59 | 2015-03-27 21:57:41 +0000 | [diff] [blame] | 28 | // expected-note@defs.h:18 +{{here}} |
Richard Smith | be3980b | 2015-03-27 00:41:57 +0000 | [diff] [blame] | 29 | |
Richard Smith | a523022 | 2015-03-27 01:37:43 +0000 | [diff] [blame] | 30 | D::X pre_dx; // expected-error +{{must be imported}} |
Richard Smith | d6aab59 | 2015-03-27 21:57:41 +0000 | [diff] [blame] | 31 | // expected-note@defs.h:20 +{{here}} |
| 32 | // expected-note@defs.h:21 +{{here}} |
Richard Smith | 9a71c99 | 2015-03-27 20:16:58 +0000 | [diff] [blame] | 33 | // FIXME: We should warn that use_dx is being used without being imported. |
| 34 | int pre_use_dx = use_dx(pre_dx); |
Richard Smith | a523022 | 2015-03-27 01:37:43 +0000 | [diff] [blame] | 35 | |
Richard Smith | d6aab59 | 2015-03-27 21:57:41 +0000 | [diff] [blame] | 36 | int pre_e = E(0); // expected-error {{must be imported}} |
| 37 | // expected-note@defs.h:24 +{{here}} |
| 38 | |
| 39 | int pre_ff = F<int>().f(); // expected-error +{{must be imported}} |
| 40 | int pre_fg = F<int>().g<int>(); // expected-error +{{must be imported}} |
| 41 | // expected-note@defs.h:26 +{{here}} |
| 42 | |
Richard Smith | c785276 | 2015-06-11 23:46:11 +0000 | [diff] [blame^] | 43 | J<> pre_j; // expected-error {{must be imported}} expected-error {{too few}} |
| 44 | // expected-note@defs.h:49 +{{here}} |
| 45 | |
Richard Smith | 65ebb4a | 2015-03-26 04:09:53 +0000 | [diff] [blame] | 46 | // Make definitions from second module visible. |
Richard Smith | 0279375 | 2015-03-27 21:16:39 +0000 | [diff] [blame] | 47 | #ifdef TEXTUAL |
Richard Smith | 65ebb4a | 2015-03-26 04:09:53 +0000 | [diff] [blame] | 48 | #include "import-and-redefine.h" |
Richard Smith | 0279375 | 2015-03-27 21:16:39 +0000 | [diff] [blame] | 49 | #else |
| 50 | #include "merged-defs.h" |
| 51 | #endif |
Richard Smith | 65ebb4a | 2015-03-26 04:09:53 +0000 | [diff] [blame] | 52 | |
| 53 | A post_a; |
Richard Smith | 9a71c99 | 2015-03-27 20:16:58 +0000 | [diff] [blame] | 54 | int post_use_a = use_a(post_a); |
Richard Smith | be3980b | 2015-03-27 00:41:57 +0000 | [diff] [blame] | 55 | B::Inner2 post_bi; |
| 56 | C_Base<1> post_cb1; |
| 57 | C1 c1; |
| 58 | C2 c2; |
Richard Smith | a523022 | 2015-03-27 01:37:43 +0000 | [diff] [blame] | 59 | D::X post_dx; |
Richard Smith | 9a71c99 | 2015-03-27 20:16:58 +0000 | [diff] [blame] | 60 | int post_use_dx = use_dx(post_dx); |
Richard Smith | d6aab59 | 2015-03-27 21:57:41 +0000 | [diff] [blame] | 61 | int post_e = E(0); |
| 62 | int post_ff = F<char>().f(); |
| 63 | int post_fg = F<char>().g<int>(); |
Richard Smith | 00be6d0 | 2015-06-11 03:05:39 +0000 | [diff] [blame] | 64 | #ifdef EARLY_INDIRECT_INCLUDE |
| 65 | // FIXME: Properly track the owning module for a member specialization. |
| 66 | // expected-error@defs.h:34 {{redefinition}} |
| 67 | // expected-note@defs.h:34 {{previous definition}} |
| 68 | // expected-error@-5 {{no matching member function}} |
| 69 | // expected-note@defs.h:34 {{substitution failure}} |
| 70 | #endif |
Richard Smith | c785276 | 2015-06-11 23:46:11 +0000 | [diff] [blame^] | 71 | J<> post_j; |
| 72 | template<typename T, int N, template<typename> class K> struct J; |
| 73 | J<> post_j2; |