1 // RUN: %clang_cc1 -fsyntax-only -verify -Wno-constant-conversion %s
2 // RUN: %clang_cc1 -fsyntax-only -verify -Wno-constant-conversion \
3 // RUN: -Wno-deprecated -Wdeprecated-increment-bool %s
5 // Bool literals can be enum values.
11 // bool cannot be decremented, and gives a warning on increment
14 ++b
; // expected-warning {{incrementing expression of type bool is deprecated}}
15 b
++; // expected-warning {{incrementing expression of type bool is deprecated}}
16 --b
; // expected-error {{cannot decrement expression of type bool}}
17 b
--; // expected-error {{cannot decrement expression of type bool}}
19 bool *b1
= (int *)0; // expected-error{{cannot initialize}}
22 // static_assert_arg_is_bool(x) compiles only if x is a bool.
24 void static_assert_arg_is_bool(T x
) {
30 static_assert_arg_is_bool(n
&& 4); // expected-warning {{use of logical '&&' with constant operand}} \
31 // expected-note {{use '&' for a bitwise operation}} \
32 // expected-note {{remove constant to silence this warning}}
33 static_assert_arg_is_bool(n
|| 5); // expected-warning {{use of logical '||' with constant operand}} \
34 // expected-note {{use '|' for a bitwise operation}}