blob: 99f3b076fe0254c76de0f9f44eb7f4d0530d3c2c [file] [log] [blame]
// 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 ();
}