blob: 127aa8cf7b87b8cf39f6bf1a0f57c5f7a712b95e [file] [log] [blame]
// { dg-do assemble }
// 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 &); // { dg-error "" } no type or storage class
};
void
test(B &b1, const B &b2)
{
b1 = b2;// { dg-error "" } .*
}