URL
https://opencores.org/ocsvn/scarts/scarts/trunk
Subversion Repositories scarts
[/] [scarts/] [trunk/] [toolchain/] [scarts-gcc/] [gcc-4.1.1/] [gcc/] [testsuite/] [g++.dg/] [lookup/] [new2.C] - Rev 26
Go to most recent revision | Compare with Previous | Blame | View Log
// { dg-do compile }
// Reject [de-]allocation functions declared in a namespace, or
// declared as static.
namespace A {
void* operator new(__SIZE_TYPE__ s, int* p); // { dg-error "namespace" }
void operator delete(void*); // { dg-error "namespace" }
}
static void* operator new(__SIZE_TYPE__ s, int* p); // { dg-error "static" }
static void operator delete(void*); // { dg-error "static" }
Go to most recent revision | Compare with Previous | Blame | View Log