8 lines
85 B
C++
8 lines
85 B
C++
export module target2;
|
|
import target1;
|
|
|
|
export int target2()
|
|
{
|
|
return target1();
|
|
}
|