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

template<typename T> struct A {};
A(...) -> A<int>;
A a = {};