2003-12-26 Guilhem Lavaux <guilhem@kaffe.org>
[official-gcc.git] / gcc / testsuite / g++.dg / opt / inline2.C
blob6e6889fc7b71d0f4756fdb6e903f72bb139a1094
1 // { dg-do link }
2 // { dg-options "-O1 -finline-functions" }
4 static void g ();
6 void f()
8   void g();
9   g();
12 void g()
16 int main () {
17   f ();