aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.old-deja/g++.jason/binding3.C
blob: 5ed4bd18c277a44c8722edeeff0961bd6efeabce (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
// { dg-do assemble  }
// Bug: g++ fails to clear out the IDENTIFIER_CLASS_VALUEs of various names
// after a class definition.

struct A {
  typedef double T;
  virtual T f () = 0;
};

class B {
  B (const B&);
  void operator=(const B&);
public:
  B ();
  typedef void * T;
};

struct C : public A {
  T f ();			// { dg-bogus "" } 
};