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