1 /* { dg-options "-Winline" } */
2 void quit_mined ();
3 void bottom_line ();
4 typedef enum { False, True } FLAG;
5 inline void
nextfile(FLAG exitiflast)6 nextfile (FLAG exitiflast)
7 {
8   if (exitiflast)
9     quit_mined ();
10   else
11     bottom_line ();
12   nextfile (True);
13 }
14