1 // PR c++/61683
2 // { dg-do compile { target c++11 } }
3 
4 struct A {};
5 A a;
6 struct B : A {
BB7   B(): decltype(a)() {}
8 };
9