First version committed to git
[zpugcc/jano.git] / toolchain / gcc / gcc / testsuite / g++.dg / init / new2.C
blob8b207d0a0337c78701dc91cc7e896ee8daaeba15
1 // Origin: asharji@uwaterloo.ca
3 // { dg-do compile }
5 class bar {
6   public :
7     bar() { }
8     void * operator new ( __SIZE_TYPE__ , void * storage ) 
9      { return (void *)1;}
12 class foo {
13   public:
14     void mem ( ) {
15         new ( 0 ) bar;
16     }