]> matita.cs.unibo.it Git - pkg-cerco/acc.git/blob - tests/GCCTestSuite/c90-dupqual-1.c.expected
Imported Upstream version 0.2
[pkg-cerco/acc.git] / tests / GCCTestSuite / c90-dupqual-1.c.expected
1 /* { dg-do compile } */
2 /* { dg-options "-std=iso9899:1990 -pedantic-errors" } */
3
4 typedef const int CI;
5 const const int c1;             /* { dg-error "duplicate" } */
6 const CI c2;                    /* { dg-error "duplicate" } */
7 const CI *c3;                   /* { dg-error "duplicate" } */
8
9 typedef volatile int VI;
10 volatile volatile int v1;       /* { dg-error "duplicate" } */
11 volatile VI v2;                 /* { dg-error "duplicate" } */
12 volatile VI *v3;                /* { dg-error "duplicate" } */