xref: /llvm-project/clang/test/CXX/module/module.unit/p7/t8.cpp (revision 3504937dfb2b7d90b2c3b3c7b28c472d31489007)
1 // RUN: rm -fr %t
2 // RUN: mkdir %t
3 // RUN: %clang_cc1 -std=c++20 -emit-module-interface %S/Inputs/m8.cppm -I%S/Inputs -o %t/m8.pcm
4 // RUN: %clang_cc1 -std=c++20 -I%S/Inputs/ -fprebuilt-module-path=%t %s -verify -fsyntax-only
5 // expected-no-diagnostics
6 export module t8;
7 import m8;
8