blob: 27375e2cf60fa7105015995908c3c072e0d25375 [file] [log] [blame]
// PR c++/46472
// { dg-do compile { target c++11 } }
template<class T> struct A {
T t;
constexpr A(){}
};
struct B
{
A<int> a;
};
B b;