Mercurial > hg > CbC > CbC_gcc
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 |
rev | line source |
---|---|
111 | 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" } */ | |
5 | |
6 /* These should perhaps be hard errors, but are pedwarns at | |
7 present. */ | |
8 | |
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'" } */ |