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