2003-12-26 Guilhem Lavaux <guilhem@kaffe.org>
[official-gcc.git] / gcc / testsuite / g++.old-deja / g++.other / eh2.C
blob158ae20871ecc1365c64e1b250a9a482e96b03ac
1 // { dg-do assemble  }
2 // { dg-options "-O2" }
3 // Origin: Jakub Jelinek <jakub@redhat.com>
5 class a {
6 public:
7   double b;
8   int c;
9   ~a() { }
12 int bar(a x);
13 a foo(double x);
15 int baz(double x, int y)
17    return bar(foo(x));