summaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.mike/p438.C
blob: 6e78af16515fba166fd7420a0619cd3d42897a54 (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
// { dg-do assemble  }
// prms-id: 438

class D;

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

class D
{
   public:
   void a(C& b); // { dg-message "D::a|no known conversion" }
};

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

   d.a(*this);	// { dg-error "match" } *this is const, so should get error
   // { dg-message "candidate" "candidate note" { target *-*-* } 22 }
}