2018-11-07 Richard Biener <rguenther@suse.de>
[official-gcc.git] / gcc / testsuite / g++.dg / cpp1z / class-deduction4.C
blob391beee8d8f41ed876a5be6255898fc4189bea5d
1 // { dg-do compile { target c++17 } }
3 template <int I, int J>
4 struct A { };
6 template <int I>
7 struct B
9   template<int J>
10   B(A<I,J>);
13 A<42,24> a;
14 B b (a);
16 int main()
18   (B(a));