10 lines · c
1// RUN: %clang_cc1 -verify %s2 3/* WG14 N505: Yes4 * Make qualifiers idempotent5 */6const const int i = 12; // expected-warning {{duplicate 'const' declaration specifier}}7typedef const int cint;8const cint j = 12;9 10 1// RUN: %clang_cc1 -verify %s2 3/* WG14 N505: Yes4 * Make qualifiers idempotent5 */6const const int i = 12; // expected-warning {{duplicate 'const' declaration specifier}}7typedef const int cint;8const cint j = 12;9 10