1 // { dg-options -std=c++17 } 2 3 template <class T> 4 struct A 5 { 6 template <class U> 7 A(T, U); 8 }; 9 10 A a (42, 1.0); 11