2003-12-26 Guilhem Lavaux <guilhem@kaffe.org>
[official-gcc.git] / gcc / testsuite / g++.old-deja / g++.eh / inline1.C
blobcb2d3fff61cbb87f92cc64571038725ed7b05eab
1 // { dg-do assemble { xfail *-*-* } }
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;