Daily bump.
[official-gcc.git] / gcc / testsuite / g++.old-deja / g++.other / eh2.C
blob514d645359cc4fa099962da2b349fdc9c7875fb2
1 // Build don't link:
2 // Origin: Jakub Jelinek <jakub@redhat.com>
3 // Special g++ Options: -O2
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));