Files
CMake/Tests/RunCMake/CXXModules/examples/deep-chain/b.cxx
T
Ben Boeckel c49d5f137b RunCMake/CXXModules: add a "deep-chain" test
This tests that transitive usages are propogated properly across long
import chains between targets.
2022-08-02 10:53:38 -04:00

8 lines
61 B
C++

export module b;
import a;
export int b()
{
return a();
}