c++: Implement P2615 'Meaningful Exports' [PR107688]
[official-gcc.git] / gcc / testsuite / g++.dg / modules / export-4_b.C
blob4d721119916ea70831e5376f22f3fab23f29ba04
1 // PR c++/107688
2 // { dg-additional-options "-fmodules-ts" }
4 import M;
6 using namespace Empty;
8 int main() {
9   S<int> x;
10   S<int*>::b y;
11   S<int**>::a z;
12   foo();