blob: 726fa6cb60fc13cb2cb0e4a1cf4b559b112e72d9 [file] [log] [blame]
Daniel Dunbara5728872009-12-15 20:14:24 +00001// RUN: %clang_cc1 -fsyntax-only -verify %s
Anders Carlssonb88d45e2008-08-23 21:12:35 +00002
3// Bool literals can be enum values.
4enum {
5 ReadWrite = false,
6 ReadOnly = true
7};
Sebastian Redle6d5a4a2008-12-20 09:35:34 +00008
9// bool cannot be decremented, and gives a warning on increment
10void test(bool b)
11{
12 ++b; // expected-warning {{incrementing expression of type bool is deprecated}}
13 b++; // expected-warning {{incrementing expression of type bool is deprecated}}
14 --b; // expected-error {{cannot decrement expression of type bool}}
15 b--; // expected-error {{cannot decrement expression of type bool}}
Douglas Gregord249e1d1f2009-05-29 20:38:28 +000016
Eli Friedmancfdc81a2009-12-19 08:11:05 +000017 bool *b1 = (int *)0; // expected-error{{cannot initialize}}
Sebastian Redle6d5a4a2008-12-20 09:35:34 +000018}
Anders Carlsson04905012009-10-16 01:44:21 +000019
20// static_assert_arg_is_bool(x) compiles only if x is a bool.
21template <typename T>
22void static_assert_arg_is_bool(T x) {
23 bool* p = &x;
24}
25
26void test2() {
27 int n = 2;
Chris Lattner90a8f272010-07-13 19:41:32 +000028 static_assert_arg_is_bool(n && 4); // expected-warning {{use of logical && with constant operand}}
29 static_assert_arg_is_bool(n || 5); // expected-warning {{use of logical || with constant operand}}
Anders Carlsson04905012009-10-16 01:44:21 +000030}