* doc/invoke.texi: Document -std=c++17 and -std=gnu++17 and document
[official-gcc.git] / gcc / testsuite / g++.dg / cpp1z / class-deduction18.C
blob42f936aa5cc337660247490b2ef21c1823564c27
1 // { dg-options -std=c++17 }
3 template<class T> struct S{S(T){}};
5 int main() {
6   S{1};
7