2018-11-07 Richard Biener <rguenther@suse.de>
[official-gcc.git] / gcc / testsuite / g++.dg / cpp1z / class-deduction51.C
blobef593ff614b8296c04d2eb86a7fbb979230ffa10
1 // PR c++/84937
2 // { dg-do compile { target c++17 } }
4 template<int, int> struct A {};
6 template<int I> struct B
8   template<auto J> B(A<I,J>);
9 };
11 B b(A<0,0>{});