repo.or.cz
/
official-gcc.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Fix broken MinGW build of gcc.c
[official-gcc.git]
/
gcc
/
testsuite
/
g++.dg
/
warn
/
Wnonnull-compare-1.C
blob
24a33fc8cc41dcd65d087b9baa95537d9d38531c
1
// PR c++/69850
2
// { dg-do compile }
3
// { dg-options "-Wall" }
4
5
struct C
6
{
7
~C () { delete this; } // { dg-bogus "nonnull argument" }
8
};
9
C c;