mirror of
https://github.com/Kitware/CMake.git
synced 2026-04-28 18:09:42 -05:00
3f1e005067
It is not part of any module, so it needs to be declared as such.
11 lines
115 B
C++
11 lines
115 B
C++
export module importable;
|
|
|
|
extern "C++" {
|
|
int forwarding();
|
|
}
|
|
|
|
export int from_import()
|
|
{
|
|
return forwarding();
|
|
}
|