[clang] Handle __declspec() attributes in using
[llvm-project.git] / clang / test / Preprocessor / expr_usual_conversions.c
blob5ca2cb867b2df5f1dc873564c7eff2aca113b0d3
1 // RUN: %clang_cc1 %s -E -verify
3 #define INTMAX_MIN (-9223372036854775807LL -1)
5 #if (-42 + 0U) /* expected-warning {{left side of operator converted from negative value to unsigned: -42 to 18446744073709551574}} */ \
6 / -2 /* expected-warning {{right side of operator converted from negative value to unsigned: -2 to 18446744073709551614}} */
7 foo
8 #endif
10 // Shifts don't want the usual conversions: PR2279
11 #if (2 << 1U) - 30 >= 0
12 #error
13 #endif