9 lines
67 B
C++
9 lines
67 B
C++
|
export module pub;
|
||
|
|
||
|
import priv;
|
||
|
|
||
|
export int f()
|
||
|
{
|
||
|
return g();
|
||
|
}
|