c90-dupqual-1.c

来自「用于进行gcc测试」· C语言 代码 · 共 13 行

C
13
字号
/* { dg-do compile } *//* { dg-options "-std=iso9899:1990 -pedantic-errors" } */typedef const int CI;const const int c1;		/* { dg-error "duplicate" } */const CI c2;			/* { dg-error "duplicate" } */const CI *c3;			/* { dg-error "duplicate" } */typedef volatile int VI;volatile volatile int v1;	/* { dg-error "duplicate" } */volatile VI v2;			/* { dg-error "duplicate" } */volatile VI *v3;		/* { dg-error "duplicate" } */

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?