OSDN Git Service

* g++.old-deja/g++.other/thunk1.C: New test.
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.old-deja / g++.other / scope1.C
1 // Testcase for proper scoping of local externs.
2
3 int x = 1;
4
5 int main()
6 {   
7   int x = 2;
8   {
9     extern int x;
10     return (x != 1);
11   }
12 }