Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git] / clang / test / C / C99 / n505.c
blob1163dd69a2e66a06219648a511efa044b2cd8111
1 // RUN: %clang_cc1 -verify %s
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;