PR c++/86728 - C variadic generic lambda.
[official-gcc.git] / gcc / testsuite / g++.dg / init / value8.C
blob0a9b90b64bf369613950f315ecf5029108574d3c
1 // PR c++/45315
3 struct A
5   A ();
6 };
8 template < int > struct B : A
10   void foo ()
11   {
12     new B < 0 > ();
13   }
16 int main()
18   B<1>().foo();