// { dg-do run { target { { i?86-*-* x86_64-*-* } && ia32 } } }// Test that stdcall doesn't prevent us from using op delete.// Contributed by Jason Merrill <jason@cygnus.com>struct A {voidoperatordelete(void*)__attribute__((stdcall));};void A::operatordelete(void*) { }intmain(){
A* ap =new A;delete ap;}