(root)/
gcc-13.2.0/
gcc/
testsuite/
g++.dg/
cpp1z/
class-deduction59.C
// PR c++/88631
// { dg-do compile { target c++17 } }

template<class T = void>
class A { };

int main()
{
  auto x = A();
  auto x2 = A{};
  A y;
}