]> git.ipfire.org Git - thirdparty/gcc.git/blame - gcc/testsuite/gcc.dg/c99-dupqual-1.c
replace ISL with isl
[thirdparty/gcc.git] / gcc / testsuite / gcc.dg / c99-dupqual-1.c
CommitLineData
28fca7e4
RH
1/* { dg-do compile } */
2/* { dg-options "-std=iso9899:1999 -pedantic-errors" } */
3
4typedef const int CI;
5const const int c1; /* { dg-bogus "duplicate" } */
6const CI c2; /* { dg-bogus "duplicate" } */
7const CI *c3; /* { dg-bogus "duplicate" } */
8
9typedef volatile int VI;
10volatile volatile int v1; /* { dg-bogus "duplicate" } */
11volatile VI v2; /* { dg-bogus "duplicate" } */
12volatile VI *v3; /* { dg-bogus "duplicate" } */