blob: 829540149563b1f40aea7f5381f2d9696d1a7beb [file] [log] [blame]
Fariborz Jahanianebfde172011-01-06 18:45:19 +00001// RUN: %clang_cc1 -fsyntax-only -Wno-deprecated-writable-strings -verify %s
Douglas Gregor069a6da2011-03-14 16:13:32 +00002// RUN: %clang_cc1 -fsyntax-only -fwritable-strings -verify %s
Chandler Carruthf3babb92011-04-23 06:54:44 +00003// RUN: %clang_cc1 -fsyntax-only -Wno-write-strings -verify %s
Fariborz Jahanianebfde172011-01-06 18:45:19 +00004// rdar://8827606
5
6char *fun(void)
7{
8 return "foo";
9}
10
11void test(bool b)
12{
13 ++b; // expected-warning {{incrementing expression of type bool is deprecated}}
14}