28 lines
659 B
Text
28 lines
659 B
Text
|
// RUN: rm -rf %t
|
||
|
// RUN: split-file %s %t
|
||
|
// RUN: cd %t
|
||
|
//
|
||
|
// RUN: %clang_cc1 -std=c++20 -emit-module-interface %t/b.cppm -o %t/b.pcm
|
||
|
// RUN: %clang_cc1 -std=c++20 -emit-module-interface %t/a.cppm -fmodule-file=b=%t/b.pcm \
|
||
|
// RUN: -o %t/a.pcm
|
||
|
// RUN: %clang_cc1 -std=c++20 %t/user.cpp -fmodule-file=a=%t/a.pcm -verify -fsyntax-only
|
||
|
|
||
|
//--- b.cppm
|
||
|
export module b;
|
||
|
export int b() {
|
||
|
return 43;
|
||
|
}
|
||
|
|
||
|
//--- a.cppm
|
||
|
export module a;
|
||
|
import b;
|
||
|
export int a() {
|
||
|
return b() + 43;
|
||
|
}
|
||
|
|
||
|
//--- user.cpp
|
||
|
import a; // expected-error {{failed to find module file for module 'b'}}
|
||
|
int use() {
|
||
|
return a(); // expected-error {{use of undeclared identifier 'a'}}
|
||
|
}
|