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 b;
|
|
import a;
|
|
|
|
export int b() {
|
|
return a();
|
|
}
|