aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.law/operators9.C
blob: 8aeac843b7b2be3c44e621d15c5dbcb629751bdb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
// Build don't link: 
// GROUPS passed operators
// opr-eq file
// Message-Id: <9301141514.AA05925@mi.el.utwente.nl>
// From: klamer@mi.el.utwente.nl (Klamer Schutte)
// Subject: 2.3.3: failed to detect error
// Date: Thu, 14 Jan 93 16:14:21 +0100

class B
{
public:
      operator=(B &); // ERROR - no type or storage class
};

void
test(B &b1, const B &b2)
{
        b1 = b2;// ERROR - .*
}