aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.dg/cpp1z/class-deduction30.C
blob: 4339a5e08c5a77f0acaa69bfa9b5b6d14c087be7 (plain)
1
2
3
4
5
6
// { dg-do compile { target c++17 } }

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

A a{};
A a2;