Fariborz Jahanian | ebfde17 | 2011-01-06 18:45:19 +0000 | [diff] [blame^] | 1 | // RUN: %clang_cc1 -fsyntax-only -Wno-deprecated-writable-strings -verify %s |
2 | // rdar://8827606 | ||||
3 | |||||
4 | char *fun(void) | ||||
5 | { | ||||
6 | return "foo"; | ||||
7 | } | ||||
8 | |||||
9 | void test(bool b) | ||||
10 | { | ||||
11 | ++b; // expected-warning {{incrementing expression of type bool is deprecated}} | ||||
12 | } |