bolt/deps/llvm-18.1.8/clang/test/SemaObjCXX/standard-conversion-to-bool.mm
2025-02-14 19:21:04 +01: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;
}