2003-12-26 Guilhem Lavaux <guilhem@kaffe.org>
[official-gcc.git] / gcc / testsuite / gcc.dg / c99-restrict-1.c
blob30ddd96bdcc8b8b756d0e5493a41c4d533ab839b
1 /* Test for restrict: in C99 only. */
2 /* Origin: Joseph Myers <jsm28@cam.ac.uk> */
3 /* { dg-do compile } */
4 /* { dg-options "-std=iso9899:1999 -pedantic-errors" } */
6 char *restrict foo;
8 /* The following are constraint violations and should be rejected. */
10 int restrict bar; /* { dg-bogus "warning" "warning in place of error" } */
11 /* { dg-error "restrict" "restrict constraint violation" { target *-*-* } 10 } */
13 typedef void (*fp) (void);
15 fp restrict baz; /* { dg-bogus "warning" "warning in place of error" } */
16 /* { dg-error "restrict" "restrict constraint violation" { target *-*-* } 15 } */
18 void quux (int restrict a[3]); /* { dg-bogus "warning" "warning in place of error" } */
19 /* { dg-error "restrict" "restrict constraint violation" { target *-*-* } 18 } */