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