mirror of
https://github.com/Kitware/CMake.git
synced 2026-02-09 08:40:11 -06:00
Now that the test is split, it doesn't make sense to have the directory anymore. It also helps with shortening paths.
7 lines
63 B
C++
7 lines
63 B
C++
export module b;
|
|
import a;
|
|
|
|
export int b() {
|
|
return a();
|
|
}
|