* doc/invoke.texi: Document -std=c++17 and -std=gnu++17 and document
[official-gcc.git] / gcc / testsuite / g++.dg / cpp1z / init-statement8.C
blob574cc213787f38fc293ef62d85b12214bfee1858
1 // { dg-options -std=c++17 }
3 int
4 f ()
6   if (int c = 5;
7       int c = 5) // { dg-error "redeclaration" }
8     return 5;
9   return 0;