blob: 1b78dd607f3f4ad805f7c731eb023c76d9977c96 [file] [log] [blame]
// { dg-do compile }
// Contributed by Wolfgang Wieser <wwieser at gmx dot de>
// PR c++/15967: ICE with ambiguous operator new
typedef __SIZE_TYPE__ size_t;
struct A { void *operator new(size_t s){ return 0; } }; // { dg-message "operator new" }
struct B { void *operator new(size_t s){ return 0; } }; // { dg-message "operator new" }
struct C : A,B {};
void crash()
{
C *c=new C(); // { dg-error "ambiguous" }
}