mirror of
https://github.com/Kitware/CMake.git
synced 2026-05-01 03:29:18 -05:00
c49d5f137b
This tests that transitive usages are propogated properly across long import chains between targets.
8 lines
61 B
C++
8 lines
61 B
C++
export module b;
|
|
import a;
|
|
|
|
export int b()
|
|
{
|
|
return a();
|
|
}
|