9 lines
98 B
C++
9 lines
98 B
C++
|
export module importable;
|
||
|
|
||
|
int forwarding();
|
||
|
|
||
|
export int from_import()
|
||
|
{
|
||
|
return forwarding();
|
||
|
}
|