11 lines
115 B
C++
11 lines
115 B
C++
|
export module importable;
|
||
|
|
||
|
extern "C++" {
|
||
|
int forwarding();
|
||
|
}
|
||
|
|
||
|
export int from_import()
|
||
|
{
|
||
|
return forwarding();
|
||
|
}
|