Sign in
rust
/
rust-lang
/
llvm-project
/
refs/heads/rustc/18.0-2024-02-13
/
.
/
clang
/
test
/
C
/
C99
/
n505.c
blob: 1163dd69a2e66a06219648a511efa044b2cd8111 [
file
] [
log
] [
blame
] [
edit
]
// RUN: %clang_cc1 -verify %s
/* WG14 N505: Yes
* Make qualifiers idempotent
*/
const
const
int
i
=
12
;
// expected-warning {{duplicate 'const' declaration specifier}}
typedef
const
int
cint
;
const
cint j
=
12
;