aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.old-deja/g++.ext/attrib2.C
blob: c79677b1f6acd849aff1a60f100419523202548e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// { 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 {
  void operator delete (void *) __attribute__ ((stdcall));
};

void A::operator delete (void *) { }

int main()
{
  A* ap = new A;
  delete ap;
}