Files
CMake/Tests/RunCMake/CXXModulesCompile/target-objects/importable.cxx
T
Ben Boeckel 3e7ffddf2f Tests/CXXModulesCompile: remove excess examples/ directory
Now that the test is split, it doesn't make sense to have the directory
anymore. It also helps with shortening paths.
2025-11-14 09:27:00 -05:00

14 lines
122 B
C++

export module importable;
export int from_import()
{
return 0;
}
extern "C++" {
int f()
{
return from_import();
}
}