aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.jason/lvalue.C
blob: c85e6fe5f2809fff88fb7817d60e4c082b9d5c48 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
// Bug: Scoped method calls don't propagate the constness of `this'.
// PRMS Id: 4181 (second testcase)
// Build don't link:

class D;

class Bptr
{
public:
  Bptr& operator=(D*);                          
  const Bptr& operator=(const D*) const;        
};

class Dptr : public Bptr
{
public:
  const Dptr& operator=(const D* rep) const 
  {
    Bptr::operator=(rep);
    return *this;
  }
};