1 /* Test declaration specifiers. Test various checks on storage class
2 and function specifiers that depend on information about the
3 declaration, not just the specifiers. Test with no special
5 /* Origin: Joseph Myers <jsm@polyomino.org.uk> */
6 /* { dg-do compile } */
7 /* { dg-options "" } */
9 auto void f0 (void) {} /* { dg-warning "function definition declared 'auto'" } */
10 register void f1 (void) {} /* { dg-error "function definition declared 'register'" } */
11 typedef void f2 (void) {} /* { dg-error "function definition declared 'typedef'" } */
13 void f3 (auto int); /* { dg-error "storage class specified for parameter 'type name'" } */
14 void f4 (extern int); /* { dg-error "storage class specified for parameter 'type name'" } */
15 void f5 (register int);
16 void f6 (static int); /* { dg-error "storage class specified for parameter 'type name'" } */
17 void f7 (typedef int); /* { dg-error "storage class specified for parameter 'type name'" } */
19 auto int x
; /* { dg-error "file-scope declaration of 'x' specifies 'auto'" } */
22 void h (void) { extern void x (void) {} } /* { dg-error "nested function 'x' declared 'extern'" } */
27 void a
; /* { dg-error "variable or field 'a' declared void" } */
28 const void b
; /* { dg-error "variable or field 'b' declared void" } */
29 static void c
; /* { dg-error "variable or field 'c' declared void" } */
36 static void r
; /* { dg-error "variable or field 'r' declared void" } */
37 static const void r1
; /* { dg-error "variable or field 'r1' declared void" } */
39 register void f8 (void); /* { dg-error "invalid storage class for function 'f8'" } */
41 void i (void) { auto void y (void) {} }
43 inline int main (void) { return 0; } /* { dg-warning "cannot inline function 'main'" } */