blob: 43f13b936b3a1741eb91fb0795318cbcf2cbdbcf [file] [log] [blame]
// Build don't link:
// Special g++ Options: -g -O2
// Copyright (C) 1999 Free Software Foundation, Inc.
// Contributed by Nathan Sidwell 21 Nov 1999 <nathan@acm.org>
// This causes assember relocation errors
struct X
{
virtual ~X () {}
};
struct Y
{
Y (){};
};
void foo ()
{
X *x = new X;
x->~X ();
Y ys[2];
}