aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.jason/local.C
blob: 6159db0c613b02903f2da327071eb3268c07b569 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
// General testcase for local classes.

int x;
void f ()
{
  static int s;
  int x;			// ERROR - referenced below
  extern int q();

  struct local {
    int g() { return x; }	// ERROR - automatic variable
    int h() { return s; }	// gets bogus error - local class
    int k() { return ::x; }	// OK
    int l() { return q(); }	// OK
    int m();			// OK - not defined
    static int foo;		// ERROR - static data member of local class
  };
}

local* p = 0;			// ERROR - no such type in scope