view gcc/testsuite/g++.old-deja/g++.mike/p5718.C @ 158:494b0b89df80 default tip

...
author Shinji KONO <kono@ie.u-ryukyu.ac.jp>
date Mon, 25 May 2020 18:13:55 +0900
parents 04ced10e8804
children
line wrap: on
line source

// { 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);
}