PR c++/79500 - ICE with non-template deduction guide
[gcc.git] / gcc / testsuite / g++.dg / cpp1z / class-deduction29.C
1 // PR c++/79500
2 // { dg-options -std=c++1z }
3
4 template<typename T> struct A {};
5 A(...) -> A<int>;
6 A a = {};