URL
https://opencores.org/ocsvn/scarts/scarts/trunk
Subversion Repositories scarts
[/] [scarts/] [trunk/] [toolchain/] [scarts-gcc/] [gcc-4.1.1/] [gcc/] [testsuite/] [g++.dg/] [warn/] [pmf1.C] - Rev 26
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