Sign in
gnu
/
gcc
/
d769c5040874bf9546f2524f3f1d2a894165f92a
/
.
/
gcc
/
testsuite
/
g++.dg
/
warn
/
Wnonnull-compare-1.C
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
;