Sign in
gnu
/
gcc.git
/
09a3da82125e07da504136841d577f103aa4ea13
/
.
/
gcc
/
testsuite
/
gcc.dg
/
pr117757-1.c
blob: 238b6db42bf5ea9591bff012f08eac9164037de1 [
file
]
/* Test ICE for shift with invalid redeclaration (bug 117757). */
/* { dg-do compile } */
/* { dg-options "" } */
void
f
(
int
a
)
{
1
<<
a
;
int
a
[
1
];
/* { dg-error "redeclared" } */
}