URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-old/] [gcc-4.2.2/] [gcc/] [testsuite/] [g++.dg/] [init/] [new2.C] - Rev 853
Go to most recent revision | Compare with Previous | Blame | View Log
// Origin: asharji@uwaterloo.ca
// { dg-do compile }
class bar {
public :
bar() { }
void * operator new ( __SIZE_TYPE__ , void * storage )
{ return (void *)1;}
};
class foo {
public:
void mem ( ) {
new ( 0 ) bar;
}
};
Go to most recent revision | Compare with Previous | Blame | View Log