blob: fbb91e87f69ac2053cd667cec41336e5041f9653 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
// { 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 ();
}
|