OpenCores
URL https://opencores.org/ocsvn/openrisc/openrisc/trunk

Subversion Repositories openrisc

[/] [openrisc/] [tags/] [gnu-dev/] [fsf-gcc-snapshot-1-mar-12/] [or1k-gcc/] [gcc/] [testsuite/] [g++.dg/] [warn/] [pr5645.C] - Rev 783

Compare with Previous | Blame | View Log

// PR5645: gcc warns that pure virtual class not explicitly initialized.  
// { dg-do compile }
// { dg-options "-Wall -Wextra" }

class a {
public:
  virtual int f() = 0;
  virtual int g() = 0;
};

class b : public a {
public:
  b();
  b(const b& c);

protected:
  int i;
};

b::b() {}

b::b(const b& c) { // { dg-bogus "base class .class a. should be explicitly initialized in the copy constructor" }
  i = c.i;
}

struct X {};

struct Y : X
{
  Y (Y const&) {}
};

Compare with Previous | Blame | View Log

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.