URL
https://opencores.org/ocsvn/openrisc_me/openrisc_me/trunk
Subversion Repositories openrisc_me
[/] [openrisc/] [trunk/] [gnu-src/] [gcc-4.5.1/] [gcc/] [testsuite/] [g++.dg/] [overload/] [defarg3.C] - Rev 315
Go to most recent revision | Compare with Previous | Blame | View Log
// PR c++/37971
// { dg-do compile }
class C {
private:
static int f(int); // { dg-error "private" }
static int f(char);
};
class D {
public:
/* C::f is inaccessible, so this is an error, even if this function
is never called. */
static void g(int (*)(int) = C::f); // { dg-error "context" }
};
Go to most recent revision | Compare with Previous | Blame | View Log