* tree-loop-distribution.c (INCLUDE_ALGORITHM): New header file.
[official-gcc.git] / gcc / testsuite / gcc.dg / noncompile / pr44517.c
blobc0b498ac6f1a2dad4e5d68a90f37138d0e8c1cf1
1 /* PR c/44517: Improve diagnostic for misspelled typename in function declaration. */
2 int f1(int x, pid_t y, long z, in t) {
3 /* { dg-error "unknown type name 'pid_t'" "pid_t" { target *-*-* } .-1 } */
4 /* { dg-error "unknown type name 'in'" "in" { target *-*-* } .-2 } */
5 return x + y + z + t;
8 int f2(int x, lon y, long z, ...){ /* { dg-error "unknown type name 'lon'" } */
9 return;
12 void f3(int n, int a[n], pid_t x); /* { dg-error "unknown type name 'pid_t'" } */
13 void f4() {}
14 void f5(int a, *b); /* { dg-error "expected declaration specifiers or" } */
15 void f6(int a, b); /* { dg-error "unknown type name 'b'" } */
16 void f7(int a, goto b); /* { dg-error "expected declaration specifiers or" } */
17 void f8(int a, in goto); /* { dg-error "unknown type name 'in'" } */
18 void f9(int a, in 1); /* { dg-error "unknown type name 'in'" } */