1 /* Test for C99 forms of array declarator. Test restrict qualifiers
2 properly applied to type of parameter. */
3 /* Origin: Joseph Myers <joseph@codesourcery.com> */
4 /* { dg-do compile } */
5 /* { dg-options "-std=iso9899:1999 -pedantic-errors" } */
10 int **b
= &a
; /* { dg-error "discards 'restrict' qualifier" } */
11 int *restrict
*c
= &a
;
18 int **b
= &a
; /* { dg-error "discards 'restrict' qualifier" } */
19 int *restrict
*c
= &a
;