summaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.mike/p438.C
blob: 9afab638abc715217232a0a4095ed1227b1bbe92 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
// Build don't link:
// prms-id: 438

class D;

class C
{
   public:
   void test() const;
};

class D
{
   public:
   void a(C& b); // ERROR - referenced below
};

void C::test() const
{
   D d;

   d.a(*this);	// ERROR - *this is const, so should get error
}