blob: d036b2929f9e3d497c13977330de407e1fbca3dd [file] [log] [blame]
// PR c++/61683
// { dg-do compile { target c++11 } }
struct A {};
A a;
struct B : A {
B(): decltype(a)() {}
};