c++: Implement P2615 'Meaningful Exports' [PR107688]
[official-gcc.git] / gcc / testsuite / g++.dg / modules / lang-1_c.C
blobb3908ed6188e118986de3790e160de2ccdd33f6d
1 // { dg-additional-options -fmodules-ts }
3 extern "C++"
5   import "lang-1_a.H";
8 extern "C"
9   import "lang-1_a.H"; // OK since p2615r1
11 extern "C" int cfunc (int); // { dg-error "conflicting declaration" }
12 extern "C" int cxxfunc (int);