PR c++/86728 - C variadic generic lambda.
[official-gcc.git] / gcc / testsuite / g++.dg / template / local7.C
blob3045534eaa6a1b94bac2da53db19ab0ee5fa008c
1 // PR c++/53599
3 template <typename T>
4 int foo ()
6   struct F;
7   struct G
8   {
9     static int F::* bar();
10   };
12   return sizeof(G);
15 int z = foo <int> ();