PR c++/86728 - C variadic generic lambda.
[official-gcc.git] / gcc / testsuite / g++.dg / parse / extern-C-2.C
blobd8a4e14b4b71519bbddfc825778c7ce0f70aeff7
1 // PR c++/85580
3 extern "C"
6   void f1()
7   {
8     union some_type{
9       char a[2];
10       int b;
11     } variable;
12   }
14   void f2()
15   {
16     union some_type{
17       char a[2];
18       int b;
19     } variable;
20   }