StmtPrinter: factor out arg printing code to PrintCallArgs
[clang.git] / test / SemaObjCXX / standard-conversion-to-bool.mm
blob2e6984872d793925cac3b3a22dee838a5f8d7db1
1 // RUN: %clang_cc1 -fsyntax-only -verify %s
3 @class NSString;
4 id a;
5 NSString *b;
7 void f() {
8   bool b1 = a;
9   bool b2 = b;