aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.jason/binding3.C
blob: 3cd358fb7af7725889adaaedab78465cbf5ef19c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
// Bug: g++ fails to clear out the IDENTIFIER_CLASS_VALUEs of various names
// after a class definition.
// Build don't link:

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 ();			// gets bogus error
};