blob: 334b59781b1f59afced35d344c24bdccd242206c [file] [log] [blame]
// { dg-do assemble }
// GROUPS passed constructors
// ctors file
// Subject: bug in handling static const object of the enclosing class
// Date: Tue, 1 Sep 92 10:38:44 EDT
class X
{ // { dg-error "X::X" } implicit constructor
private:
int x;
public:
static const X x0;
X( int );
};
class Y
{
private:
X xx;
public:
Y();
}
X::X( int xi ) // { dg-error "return type|X::X|semicolon" }
{
x = xi;
}
const X X::x0( 0 );
Y::Y() // { dg-error "no match" }
{
xx = X::x0;
}