Sign in
gnu
/
gcc
/
57ea00136418991e847e46a6946a81a1df70c9a4
/
.
/
gcc
/
testsuite
/
g++.old-deja
/
g++.other
/
scope1.C
blob: 0b349f2b20f5d7b0912e067ee482a4074ae7e909 [
file
] [
log
] [
blame
]
// { dg-do run }
// Testcase for proper scoping of local externs.
int
x
=
1
;
int
main
()
{
int
x
=
2
;
{
extern
int
x
;
return
(
x
!=
1
);
}
}