rt_gccstream/gcc/testsuite/g++.old-deja/g++.other/new5.C

14 lines
205 B
C

// { 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 ();
}