repo.or.cz
/
llvm-project.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git]
/
clang
/
test
/
C
/
C99
/
n505.c
blob
1163dd69a2e66a06219648a511efa044b2cd8111
1
// RUN: %clang_cc1 -verify %s
2
3
/* WG14 N505: Yes
4
* Make qualifiers idempotent
5
*/
6
const const int
i
=
12
;
// expected-warning {{duplicate 'const' declaration specifier}}
7
typedef
const int
cint
;
8
const
cint j
=
12
;
9