summaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.eh/inline1.C
blob: e3597675747b12133cd1488e5d66da9becbffdbf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
// { dg-do assemble }
// { dg-options "-ansi -pedantic-errors -O2" }
// Copyright (C) 1999 Free Software Foundation, Inc.
// Contributed by Nathan Sidwell 29 Nov 1999 <nathan@acm.org>


struct Foo
{
  inline ~Foo ();
};

inline void Wibble (int) throw ()
{
}

inline Foo::~Foo ()
{
  Wibble (6);
}

int ExtendFoos ()
{
  Foo  tmp;
  return 0;
}