URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-old/] [gcc-4.2.2/] [gcc/] [testsuite/] [g++.dg/] [overload/] [operator2.C] - Rev 832
Go to most recent revision | Compare with Previous | Blame | View Log
// PR c++/19966
// { dg-do compile }
struct A
{
static operator int(); // { dg-error "must be a nonstatic" }
};
struct B
{
static int operator*(); // { dg-error "must be either" }
};
static operator int(); // { dg-error "must be a nonstatic" }
Go to most recent revision | Compare with Previous | Blame | View Log