aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.law/nest3.C
blob: 405a1604250a93c70076388320fa923be0189e11 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
// Build don't link: 
// GROUPS passed nest
#include <iostream.h>

struct inner {
  static void f() { cout << "inner::f()\n";}
};

struct outer {

  struct inner {
    static void f() { cout << "outer::inner::f()\n";}
  };

  static void f() {
    inner::f();     //call of outer::inner::f()
    ::inner::f();   //(try to) call inner::f() => parse error
  }
};

main() {
  outer::f();
  cout << endl;
  return 0;
}