2018-11-07 Richard Biener <rguenther@suse.de>
[official-gcc.git] / gcc / testsuite / g++.dg / cpp1z / init-statement9.C
blob84b24d4eb2dd8f21ed2bee3e746b4766b38f30a9
1 // { dg-do compile { target c++17 } }
3 void
4 f ()
6   {
7     int c;
8     if (int c = 2; c != 0)
9       int c = 4; // { dg-error "redeclaration" }
10   }
12   if (int c = 2; c != 0)
13     int c = 4; // { dg-error "redeclaration" }
15   if (int c = 2; int c = 6) // { dg-error "redeclaration" }
16     int c = 4; // { dg-error "redeclaration" }