mirror of
https://github.com/Kitware/CMake.git
synced 2026-05-02 12:19:54 -05:00
3e7ffddf2f
Now that the test is split, it doesn't make sense to have the directory anymore. It also helps with shortening paths.
14 lines
122 B
C++
14 lines
122 B
C++
export module importable;
|
|
|
|
export int from_import()
|
|
{
|
|
return 0;
|
|
}
|
|
|
|
extern "C++" {
|
|
int f()
|
|
{
|
|
return from_import();
|
|
}
|
|
}
|