(root)/
gcc-13.2.0/
gcc/
testsuite/
g++.dg/
cpp0x/
constexpr-synth1.C
// 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;