PR c++/86728 - C variadic generic lambda.
[official-gcc.git] / gcc / testsuite / g++.dg / init / const8.C
blob4eb293d654cf55e46b9337ade2cee606c9b3f892
1 // DR 234 - it should be OK to leave off the initializer of a const
2 // variable if the default constructor fully initializes the object.
4 struct A { };
5 const A a;
7 struct B { A a; };
8 const B b;
10 struct C { virtual void f(); };
11 const C c;