OSDN Git Service

* gcc.dg/20020201-1.c: Use cleanup-coverage_files.
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / gcc.dg / pr18596-3.c
1 /* { dg-do compile } */
2 /* { dg-options "" } */
3
4 int foo ()
5 {
6   static g () = 0; /* { dg-error "invalid storage class" } */
7   static int f () = 1; /* { dg-error "invalid storage class" } */
8   auto int h () = 0; /* { dg-error "initialized like a variable" } */
9   /* { dg-error "declared but never defined" "nested" { target *-*-* } 8 } */
10   static int i () = { 0 }; /* { dg-error "invalid storage class" } */
11   static int j () = /* { dg-error "invalid storage class" } */
12         { 0, 0.0 };
13 }