2018-11-07 Richard Biener <rguenther@suse.de>
[official-gcc.git] / gcc / testsuite / g++.dg / cpp1z / class-deduction1.C
blob752b430181df678e53c51424642de97c2a06cc05
1 // { dg-do compile { target c++17 } }
3 template <class T>
4 struct A
6   A(T);
7 };
9 A a (42);