blob: 8b6354cc63f2c4512bb49b8198b4a24fbc0ac412 [file] [log] [blame]
// Testcase for proper scoping of local externs.
int x = 1;
int main()
{
int x = 2;
{
extern int x;
return (x != 1);
}
}