android_mt6572_jiabo/external/clang/test/SemaObjCXX/standard-conversion-to-bool.mm
2025-09-05 16:56:03 +08:00

13 lines
154 B
Text

// RUN: %clang_cc1 -fsyntax-only -verify %s
// expected-no-diagnostics
@class NSString;
id a;
NSString *b;
void f() {
bool b1 = a;
bool b2 = b;
}