1 // { dg-do compile { target c++17 } }
2 
3 template <class T>
4 struct A
5 {
6   int i;
7 };
8 
9 A<int> a1;
10 A a(a1);
11