aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.ns/extern1.C
blob: f4ab5ef9e7434e8f4634c3432b08340600cbbcbd (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; // causes linker error - XFAIL *-*-*
    xx = 0;
  }
  int xx = 1;
}

int main() {
  xx = 2;
}