1 /* Test implicit function declarations and other odd declarations in
2 function prototypes. Bug 18239. */
3 /* Origin: Joseph Myers <joseph@codesourcery.com> */
4 /* { dg-do compile } */
5 /* { dg-options "-std=gnu89" } */
7 /* Implicit function declaration in attribute in definition (testcase
10 foo (int __attribute__ ((__mode__ (vector_size(8)))) i
) /* { dg-warning "'mode' attribute ignored" } */
15 /* Various other cases. */
17 int f (int [sizeof(g())]);
18 int f1 (int [sizeof(g1())]);
20 int g () { return 1; }
23 h (int (*p
)[sizeof(i())])
26 return (*p
)[0] + g3() + g2();
29 int i () { return 2; }
31 int f2 (int [sizeof(g2())]);
32 int f3 (int [sizeof(g3())]);
33 int g3 () { return 4; }