8 lines
61 B
C++
8 lines
61 B
C++
|
export module b;
|
||
|
import a;
|
||
|
|
||
|
export int b()
|
||
|
{
|
||
|
return a();
|
||
|
}
|