blob: 1d05a0867ffa7d512a4cf1eaaea7d6575d988053 [file] [log] [blame]
// PR c++/78894
// { dg-do compile { target c++17 } }
struct A
{
A ();
};
template <typename T>
struct C
{
C (int, const T &, const A & = A ());
};
C a = { 0, 0 };