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