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);
}
}