blob: 24a33fc8cc41dcd65d087b9baa95537d9d38531c [file] [log] [blame]
// PR c++/69850
// { dg-do compile }
// { dg-options "-Wall" }
struct C
{
~C () { delete this; } // { dg-bogus "nonnull argument" }
};
C c;