Sign in
gnu
/
gcc
/
cd2fd5facb5e1882d3f338ed456ae9536f7c0593
/
.
/
gcc
/
testsuite
/
g++.old-deja
/
g++.other
/
new5.C
blob: fbb91e87f69ac2053cd667cec41336e5041f9653 [
file
] [
log
] [
blame
]
// { dg-do run }
// Test that const-correctness is observed when using new.
struct
A
{
A
()
{
}
int
f
()
{
return
1
;
}
int
f
()
const
{
return
0
;
}
};
int
main
()
{
return
(
new
const
A
)->
f
();
}