[docs] Add LICENSE.txt to the root of the mono-repo
[llvm-project.git] / clang / test / Rewriter / objc-bool-literal-modern-1.mm
blob7aaa79b1e943fb8492e435fcb1b5833ca32c17d3
1 // RUN: %clang_cc1 -x objective-c++ -fblocks -fms-extensions -rewrite-objc %s -o %t-rw.cpp 
2 // RUN: %clang_cc1 -fsyntax-only -Wno-address-of-temporary -D"__declspec(X)=" %t-rw.cpp
3 // rdar://11231426
5 // rdar://11375908
6 typedef unsigned long size_t;
8 typedef bool BOOL;
10 BOOL yes() {
11   return __objc_yes;
14 BOOL no() {
15   return __objc_no;
18 BOOL which (int flag) {
19   return flag ? yes() : no();
22 int main() {
23   which (__objc_yes);
24   which (__objc_no);
25   return __objc_yes;
28 void y(BOOL (^foo)());
30 void x() {
31     y(^{
32         return __objc_yes;
33     });