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

Subversion Repositories openrisc

[/] [openrisc/] [trunk/] [gnu-old/] [gcc-4.2.2/] [gcc/] [testsuite/] [g++.old-deja/] [g++.mike/] [p3060c.C] - Rev 823

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

// { dg-do assemble  }
// A new problem with my pointer to member function work.
// prms-id: 3060

class Foo
{
 public:
  int x;
  int y;
  Foo (int i, int j) { x = i; y = j; }
  operator int ();
};

int Foo::operator int() { return x; } // { dg-warning "" } can't specify return type

Foo foo(10, 11);

int
main()
{
  int Foo::* pmi = &Foo::y;
  return foo.*pmi;
}

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.