[clang][modules] Don't prevent translation of FW_Private includes when explicitly...
[llvm-project.git] / clang / test / Modules / missing-module-declaration.cppm
blobd52f6639fe4f6484cd5a0925f8a5ad5e3898d478
1 // RUN: rm -rf %t
2 // RUN: split-file %s %t
3 // RUN: cd %t
4 //
5 // RUN: %clang_cc1 -std=c++20 %t/B.cppm -I%t -emit-module-interface -o %t/B.pcm
6 // RUN: %clang_cc1 -std=c++20 %t/A.cppm -I%t -fprebuilt-module-path=%t -emit-module-interface -verify
8 //--- A.cppm
9 import B; // expected-error{{missing 'export module' declaration in module interface unit}}
11 //--- B.cppm
12 module;
13 export module B;