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