annotate gcc/testsuite/gcc.dg/inline-12.c @ 111:04ced10e8804

gcc 7
author kono
date Fri, 27 Oct 2017 22:46:09 +0900
parents
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
111
kono
parents:
diff changeset
1 /* Test misuses of inline. -pedantic-errors test. */
kono
parents:
diff changeset
2 /* Origin: Joseph Myers <jsm@polyomino.org.uk> */
kono
parents:
diff changeset
3 /* { dg-do compile } */
kono
parents:
diff changeset
4 /* { dg-options "-std=gnu99 -pedantic-errors" } */
kono
parents:
diff changeset
5
kono
parents:
diff changeset
6 /* These should perhaps be hard errors, but are pedwarns at
kono
parents:
diff changeset
7 present. */
kono
parents:
diff changeset
8
kono
parents:
diff changeset
9 inline int a; /* { dg-error "variable 'a' declared 'inline'" } */
kono
parents:
diff changeset
10 inline int (*b)(void); /* { dg-error "variable 'b' declared 'inline'" } */
kono
parents:
diff changeset
11 typedef inline void c(void); /* { dg-error "typedef 'c' declared 'inline'" } */
kono
parents:
diff changeset
12 typedef inline int d; /* { dg-error "typedef 'd' declared 'inline'" } */
kono
parents:
diff changeset
13 void e(inline int f(void)); /* { dg-error "parameter 'f' declared 'inline'" } */
kono
parents:
diff changeset
14 void g(inline int(void)); /* { dg-error "parameter '\\({anonymous}\\)' declared 'inline'" } */