1 // PR c++/79500
2 // { dg-do compile { target c++17 } }
3 
4 template<typename T> struct A {};
5 A(...) -> A<int>;
6 A a = {};
7