PR tree-optimization/83369 - Missing diagnostics during inlining
[official-gcc.git] / gcc / testsuite / gcc.dg / inline-12.c
blobc2895176354195f0e8df1c241a54ed518753af07
1 /* Test misuses of inline. -pedantic-errors test. */
2 /* Origin: Joseph Myers <jsm@polyomino.org.uk> */
3 /* { dg-do compile } */
4 /* { dg-options "-std=gnu99 -pedantic-errors" } */
6 /* These should perhaps be hard errors, but are pedwarns at
7 present. */
9 inline int a; /* { dg-error "variable 'a' declared 'inline'" } */
10 inline int (*b)(void); /* { dg-error "variable 'b' declared 'inline'" } */
11 typedef inline void c(void); /* { dg-error "typedef 'c' declared 'inline'" } */
12 typedef inline int d; /* { dg-error "typedef 'd' declared 'inline'" } */
13 void e(inline int f(void)); /* { dg-error "parameter 'f' declared 'inline'" } */
14 void g(inline int(void)); /* { dg-error "parameter '\\({anonymous}\\)' declared 'inline'" } */