OpenCores
URL https://opencores.org/ocsvn/openrisc/openrisc/trunk

Subversion Repositories openrisc

[/] [openrisc/] [trunk/] [gnu-old/] [gcc-4.2.2/] [gcc/] [testsuite/] [g++.old-deja/] [g++.law/] [dtors3.C] - Rev 816

Compare with Previous | Blame | View Log

// { dg-do run  }
// GROUPS passed destructors
// dtor file
// Message-Id: <9301242117.AA04053@cs.rice.edu>
// From: dougm@cs.rice.edu (Doug Moore)
// Subject: 2.3.3: premature dtor of temp?
// Date: Sun, 24 Jan 93 15:17:07 CST

#include <stdio.h>
#include <stdlib.h>

int killed = 0;

class Foo
{
  int a;
public:
  Foo() 
  :a(0) {;}
  ~Foo() { killed++;}
  Foo& operator << (int b)
  {
    a += b;
    if (killed)
      {
        printf ("FAIL\n");
        exit (1);
      }
    return *this;
  }
};

int main()
{
  Foo() << 1 << 3 << 5 << 7;
  printf ("PASS\n");
}

Compare with Previous | Blame | View Log

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.