blob: 572cb284f39167f6c029b4872c678593a0c5e836 [file] [log] [blame]
// Origin: asharji@uwaterloo.ca
// { dg-do compile }
// { dg-options "-fvolatile" }
class bar {
public :
bar() { }
void * operator new ( __SIZE_TYPE__ , void * storage )
{ return (void *)1;}
};
class foo {
public:
void mem ( ) {
new ( 0 ) bar;
}
};