mirror of
https://gitlab.kitware.com/cmake/cmake.git
synced 2026-09-26 04:09:35 +03: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 a;
|
|
import b;
|
|
|
|
export int a() {
|
|
return b();
|
|
}
|