URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-old/] [gcc-4.2.2/] [gcc/] [testsuite/] [g++.dg/] [warn/] [pmf1.C] - Rev 831
Go to most recent revision | Compare with Previous | Blame | View Log
// { dg-do compile }
// Origin: benko@sztaki.hu
// PR c++/10496: Incorrect pointer to member function diagnostics
// for constant member functions.
struct a
{
int f() const;
};
int
a::f() const
{
int (a::* b)() const = &f; // { dg-error "&a::f" }
}
Go to most recent revision | Compare with Previous | Blame | View Log