view gcc/testsuite/g++.old-deja/g++.mike/p5718.C @ 111:04ced10e8804

gcc 7
author kono
date Fri, 27 Oct 2017 22:46:09 +0900
parents
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);
}