blob: d0acbb9bdab9ee80ef96948c34c7bd0441f8e99d [file] [log] [blame]
// { dg-do run }
// prms-id: 5718
class Base {
int i;
public:
Base() { i = 42; }
};
class Mixin {
int j;
public:
Mixin() { j = 42; }
};
class Derived : public Base, public Mixin {
public:
Derived() { }
Derived & operator=(Mixin & m) { return *this; }
};
void
testFunct(Derived * arg) {
Mixin temp;
(Mixin &)(*arg) = temp; // { dg-bogus "" }
}
int
main(int argc, char *argv[]) {
Derived temp;
testFunct(&temp);
}