Mercurial > hg > CbC > CbC_gcc
comparison gcc/testsuite/gcc.dg/c90-dupqual-1.c @ 111:04ced10e8804
gcc 7
author | kono |
---|---|
date | Fri, 27 Oct 2017 22:46:09 +0900 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
68:561a7518be6b | 111:04ced10e8804 |
---|---|
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" } */ |