aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.brendan/scope2.C
blob: 7085716be73a4e7d2646c5755cd3668465514209 (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
26
27
28
29
// Build don't link: 
// GROUPS passed scoping
class A
{
 public:
  A() {}
  ~A() {}
  virtual void f() {}
};

class B : public A
{
 public:
  B() {}
  ~B() {}
  virtual void f() {}
};


B GLOBAL_B;

B& foo() {return GLOBAL_B;}

main()
{
  // build_scoped_method_call and build_scoped_ref should know how
  // to deal with a reference for this
  foo().A::f(); 
}