Aaron Ballman fb9b3e9a5f Update the status of some C11 and C99 features we support
This updates the status of:

N505 Make qualifiers idempotent
N725 Integer promotion rules
N1311 Initializing static of external variables
2023-01-20 14:50:39 -05:00

10 lines
215 B
C

// 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;