blob: 5015d819f7f96fbca9f049c077b258c56559bb8a [file] [log] [blame]
// Origin: asharji@uwaterloo.ca
// { dg-do compile }
typedef __SIZE_TYPE__ size_t;
class bar {
int i;
public :
void * operator new ( size_t , void * storage );
};
class foo {
int storage[ 5 ];
public:
void mem ( ) {
bar *s = new ( ( void * ) & storage ) bar;
}
};