mirror of
https://github.com/Kitware/CMake.git
synced 2026-02-05 06:40:26 -06:00
The build should fail. However, the error message is completely generator-dependent as it is the build tool which (should) eventually detect this case.
7 lines
63 B
C++
7 lines
63 B
C++
export module a;
|
|
import b;
|
|
|
|
export int a() {
|
|
return b();
|
|
}
|