OSDN Git Service

PR c++/44157
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.dg / opt / inline2.C
1 // { dg-do link }
2 // { dg-options "-O1 -finline-functions" }
3
4 static void g ();
5
6 void f()
7 {
8   void g();
9   g();
10 }
11
12 void g()
13 {
14 }
15
16 int main () {
17   f ();
18 }