view gcc/testsuite/g++.old-deja/g++.jason/new3.C @ 131:84e7813d76e9

gcc-8.2
author mir3636
date Thu, 25 Oct 2018 07:37:49 +0900
parents 04ced10e8804
children
line wrap: on
line source

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