[clang][modules] Don't prevent translation of FW_Private includes when explicitly...
[llvm-project.git] / clang / test / CXX / module / dcl.dcl / dcl.module / dcl.module.import / p1.cppm
blob873e4c0edeac2559433e27baa68a7c8b5d214766
1 // RUN: rm -rf %t
2 // RUN: mkdir %t
3 // RUN: split-file %s %t
4 //
5 // RUN: %clang_cc1 -std=c++20 -emit-module-interface %t/x.cppm -o %t/x.pcm
6 // RUN: %clang_cc1 -std=c++20 -emit-module-interface -fmodule-file=x=%t/x.pcm %t/x.y.cppm -o %t/x.y.pcm
7 // RUN: %clang_cc1 -std=c++20 -emit-module-interface %t/a.b.cppm -o %t/a.b.pcm
8 //
9 // RUN: %clang_cc1 -std=c++20 -I%t -fmodule-file=x.y=%t/x.y.pcm -fmodule-file=x=%t/x.pcm -verify %t/test.cpp \
10 // RUN:            -DMODULE_NAME=z -DINTERFACE
11 // RUN: %clang_cc1 -std=c++20 -I%t -fmodule-file=x.y=%t/x.y.pcm -fmodule-file=x=%t/x.pcm \
12 // RUN:            -fmodule-file=a.b=%t/a.b.pcm -verify %t/test.cpp -DMODULE_NAME=a.b
13 // RUN: %clang_cc1 -std=c++20 -I%t -fmodule-file=x.y=%t/x.y.pcm -fmodule-file=x=%t/x.pcm -verify %t/test.x.cpp
15 //--- x.cppm
16 export module x;
17 export int a, b;
19 //--- x.y.cppm
20 export module x.y;
21 export int c;
23 //--- a.b.cppm
24 export module a.b;
25 export int d;
27 //--- test.x.cpp
28 module x;
29 int use_1 = a; // ok
31 int use_2 = b; // ok
33 // There is no relation between module x and module x.y.
34 int use_3 = c; // expected-error {{use of undeclared identifier 'c'}}
36 //--- test.cpp
37 #ifdef INTERFACE
38 export module MODULE_NAME;
39 #else
40 module MODULE_NAME;
41 #endif
43 import x;
45 import x [[]];
46 import x [[foo]]; // expected-warning {{unknown attribute 'foo' ignored}}
47 import x [[noreturn]]; // expected-error {{'noreturn' attribute cannot be applied to a module import}}
48 import x [[blarg::noreturn]]; // expected-warning {{unknown attribute 'noreturn' ignored}}
50 import x.y;
51 import x.; // expected-error {{expected a module name after 'import'}}
52 import .x; // expected-error {{expected a module name after 'import'}}
54 import blarg; // expected-error {{module 'blarg' not found}}
56 int use_4 = c; // ok