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

Subversion Repositories openrisc

[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [g++.dg/] [pr48660.C] - Rev 701

Go to most recent revision | Compare with Previous | Blame | View Log

template<int N> struct val { char a[N]; };

class Base
{
public:
  virtual val<1> get1() const = 0;
  virtual val<2> get2() const = 0;
  virtual val<3> get3() const = 0;
  virtual val<4> get4() const = 0;
};

class Derived : public virtual Base
{
public:
  virtual val<1> get1() const { return foo->get1(); }
  virtual val<2> get2() const { return foo->get2(); }
  virtual val<3> get3() const { return foo->get3(); }
  virtual val<4> get4() const { return foo->get4(); }
  Base *foo;
};

Base* make() { return new Derived; }

Go to most recent revision | 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.