FSF GCC merge 02/23/03
[official-gcc.git] / gcc / testsuite / g++.old-deja / g++.jason / temporary.C
blob168bfe9103e18678f1cc79af26cb9a48c7dc4d77
1 // From: bruno@isoft.com.ar (Bruno R. Depascale)
2 // Subject: No destructor bug
3 // Date: Mon, 14 Feb 1994 12:49:45 -0300 (Arg)
5 // Bug: temporaries created with constructor notation aren't destroyed.
7 int count = 0;
9 class A {
10 public:
11   A() { ++count; }
12   ~A() { --count; }
15 int main()
17   A();
18   return count;