blob: d950259e72a5e8fdb4b67e5b6a0c22dbf75cbc3b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
|
// { dg-do run }
// { dg-options "-fcheck-new -pedantic -Wno-long-long" }
// PRMS Id: 6037
extern "C" void * malloc (__SIZE_TYPE__);
int ena = 0;
struct A {
int i;
A () { i = 2; }
void * operator new (__SIZE_TYPE__ s)
{
if (ena)
return 0;
return malloc (s);
}
};
struct B {
int i;
B () { i = 2; }
void * operator new (__SIZE_TYPE__ s) throw()
{
if (ena)
return 0;
return malloc (s);
}
};
int main ()
{
ena = 1;
A *ap = new A;
B *bp = new B;
return ap || bp ;
}
|