1 /* Test old-style function definitions not in C2x: () does not give
2    type with a prototype for older standards.  */
3 /* { dg-do compile } */
4 /* { dg-options "-std=c11" } */
5 
6 void
f()7 f ()
8 {
9 }
10 
11 void
g(void)12 g (void)
13 {
14   f (1);
15 }
16