Sign in
gnu
/
gcc
/
a8404c07e7fca388c02c39077865f7d5fa928430
/
.
/
gcc
/
testsuite
/
g++.dg
/
pr68831.C
blob: 2a354a57bb1284ec717ff9823c738ae7482bbf95 [
file
] [
log
] [
blame
]
// PR c++/68831
// { dg-options "-Waddress" }
class
DenseMap
{
public
:
~
DenseMap
();
};
extern
const
DenseMap
&
GCMap
;
void
foo
()
{
delete
&
GCMap
;
}