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

gcc 7
author kono
date Fri, 27 Oct 2017 22:46:09 +0900
parents
children 1830386684a0
line wrap: on
line source

// { dg-do assemble  }
// { dg-options "-Woverloaded-virtual" }

struct B4 {
  virtual void bothfardiff(float);	// { dg-warning "" } was hidden
};

struct B3 : public B4 {
};

struct B2 {
};

struct B {
  virtual void baseonly(int);

  virtual void bothsame(int);

  virtual void bothdiff(float);		// { dg-warning "" } was hidden

  virtual void both2same(int);
  virtual void both2same(float);

  virtual void both12diff(int);
  virtual void both12diff(float);	// { dg-warning "" } was hidden
};

struct D : public B, public B2, public B3 {
  virtual void derivedonly(int);

  virtual void bothsame(int);

  virtual void bothdiff(int);		// { dg-warning "" } 

  virtual void both2same(int);
  virtual void both2same(float);

  virtual void both12diff(int);		// { dg-warning "" } 

  virtual void bothfardiff(int);	// { dg-warning "" } 
};