1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137
|
// RUN: rm -rf %t
// RUN: mkdir -p %t
// RUN: split-file %s %t
// RUN: %clang_cc1 -std=c++20 -emit-module-interface %t/import-diags-tu1.cpp \
// RUN: -o %t/B.pcm
// RUN: %clang_cc1 -std=c++20 -emit-module-interface %t/import-diags-tu2.cpp \
// RUN: -o %t/C.pcm
// RUN: %clang_cc1 -std=c++20 -emit-module-interface %t/import-diags-tu3.cpp \
// RUN: -fmodule-file=%t/B.pcm -fmodule-file=%t/C.pcm -o %t/AOK1.pcm
// RUN: %clang_cc1 -std=c++20 -S %t/import-diags-tu4.cpp \
// RUN: -fmodule-file=%t/AOK1.pcm -o %t/tu_3.s -verify
// RUN: %clang_cc1 -std=c++20 -emit-module-interface %t/import-diags-tu5.cpp \
// RUN: -fmodule-file=%t/B.pcm -fmodule-file=%t/C.pcm -o %t/BC.pcm -verify
// RUN: %clang_cc1 -std=c++20 -S %t/import-diags-tu6.cpp \
// RUN: -fmodule-file=%t/B.pcm -fmodule-file=%t/C.pcm -o %t/tu_5.s -verify
// RUN: %clang_cc1 -std=c++20 -emit-module-interface %t/import-diags-tu7.cpp \
// RUN: -fmodule-file=%t/B.pcm -o %t/D.pcm -verify
// RUN: %clang_cc1 -std=c++20 -emit-module-interface %t/import-diags-tu8.cpp \
// RUN: -fmodule-file=%t/B.pcm -o %t/D.pcm -verify
// RUN: %clang_cc1 -std=c++20 -S %t/import-diags-tu9.cpp \
// RUN: -fmodule-file=%t/B.pcm -o %t/tu_8.s -verify
// RUN: %clang_cc1 -std=c++20 -emit-module-interface %t/import-diags-tu10.cpp \
// RUN: -o %t/B.pcm -verify
// RUN: %clang_cc1 -std=c++20 -emit-obj %t/import-diags-tu11.cpp \
// RUN: -fmodule-file=%t/C.pcm -o %t/impl.o
// Test diagnostics for incorrect module import sequences.
//--- import-diags-tu1.cpp
export module B;
int foo ();
// expected-no-diagnostics
//--- import-diags-tu2.cpp
export module C;
int bar ();
// expected-no-diagnostics
//--- import-diags-tu3.cpp
export module AOK1;
import B;
export import C;
export int theAnswer ();
// expected-no-diagnostics
//--- import-diags-tu4.cpp
module;
module AOK1;
export import C; // expected-error {{export declaration can only be used within a module interface unit}}
int theAnswer () { return 42; }
//--- import-diags-tu5.cpp
export module BC;
export import B;
int foo () { return 10; }
import C; // expected-error {{imports must immediately follow the module declaration}}
//--- import-diags-tu6.cpp
module B; // implicitly imports B.
int foo () { return 10; }
import C; // expected-error {{imports must immediately follow the module declaration}}
//--- import-diags-tu7.cpp
module;
// We can only have preprocessor directives here, which permits an include-
// translated header unit. However those are identified specifically by the
// preprocessor; non-preprocessed user code should not contain an 'import' here.
import B; // expected-error {{module imports cannot be in the global module fragment}}
export module D;
int delta ();
//--- import-diags-tu8.cpp
export module D;
int delta ();
module :private;
import B; // expected-error {{module imports cannot be in the private module fragment}}
//--- import-diags-tu9.cpp
module B;
import B; // expected-error {{import of module 'B' appears within its own implementation}}
//--- import-diags-tu10.cpp
export module B;
import B; // expected-error {{import of module 'B' appears within its own interface}}
//--- import-diags-tu11.cpp
int x;
import C;
int baz() { return 6174; }
// expected-no-diagnostics
|