1// RUN: rm -rf %t 2// RUN: mkdir %t 3// RUN: %clang_cc1 -x c++ -std=c++20 %S/Inputs/concept/A.cppm -emit-module-interface -o %t/A.pcm 4// RUN: %clang_cc1 -x c++ -std=c++20 -fprebuilt-module-path=%t -I%S/Inputs/concept %s -fsyntax-only -verify 5// expected-no-diagnostics 6 7module; 8#include "foo.h" 9export module B; 10import A; 11