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