Dead
[official-gcc.git] / gomp-20050608-branch / gcc / testsuite / g++.old-deja / g++.eh / inline1.C
blobe3597675747b12133cd1488e5d66da9becbffdbf
1 // { dg-do assemble }
2 // { dg-options "-ansi -pedantic-errors -O2" }
3 // Copyright (C) 1999 Free Software Foundation, Inc.
4 // Contributed by Nathan Sidwell 29 Nov 1999 <nathan@acm.org>
7 struct Foo
9   inline ~Foo ();
12 inline void Wibble (int) throw ()
16 inline Foo::~Foo ()
18   Wibble (6);
21 int ExtendFoos ()
23   Foo  tmp;
24   return 0;