Sign in
gnu
/
gcc
/
1f16a020acbea0af26209478990b83b1a1ba3a2b
/
.
/
gcc
/
testsuite
/
g++.old-deja
/
g++.jason
/
delete2.C
blob: c6230eef125b14f0865a5e0877c345833a34a838 [
file
] [
log
] [
blame
]
// { dg-do assemble }
// PRMS Id: 5003
// Bug: g++ complains about calling the destructor for a const object.
struct
A
{
public
:
~
A
();
};
const
A foo
();
void
bar
()
{
A n
;
n
=
foo
();
// { dg-bogus "" } deleting const
}