Sign in
gnu
/
gcc
/
cd2fd5facb5e1882d3f338ed456ae9536f7c0593
/
.
/
gcc
/
testsuite
/
g++.old-deja
/
g++.brendan
/
scope1.C
blob: f5459410941ac8a91a5cc06cb3ffd31bc369fb44 [
file
] [
log
] [
blame
]
// { dg-do assemble }
// GROUPS passed scoping
int
f
(
int
i
)
{
if
(
i
)
for
(
int
j
=
i
;
j
;
j
--)
;
return
j
;
// error: j should only be in scope inside the body of `for'// { dg-error "" } .*
}