
Previously, only `export()` calls in the same directory were noticed. Also add a test that exports in a different directory than the target itself resides in. Fixes: #25813
7 lines
68 B
C++
7 lines
68 B
C++
export module importable;
|
|
|
|
export int from_import()
|
|
{
|
|
return 0;
|
|
}
|