standard-conversion-to-bool.mm   [plain text]


// RUN: %clang_cc1 -fsyntax-only -verify %s

@class NSString;
id a;
NSString *b;

void f() {
  bool b1 = a;
  bool b2 = b;
}