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