* doc/invoke.texi: Document -std=c++17 and -std=gnu++17 and document
[official-gcc.git] / gcc / testsuite / g++.dg / cpp1z / class-deduction2.C
blob2e1d115c58d7abd6650e894d249ef4f827a5467d
1 // { dg-options -std=c++17 }
3 template <class T>
4 struct A
6   template <class U>
7   A(T, U);
8 };
10 A a (42, 1.0);