aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.ns/extern1.C
blob: 906b97b8f061fa36c4d2665cbd116a4e82b13bc6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// Build don't run:

// Based on a testcase by eyal.ben-david@aks.com

// An extern declaration of an undeclared object within a function
// introduces the object into the enclosing namespace [basic.link]/7

namespace {
  void foo() {
    extern int xx;
    xx = 0;
  }
  int xx = 1;
}

int main() {
  xx = 2;
}