mirror of
https://github.com/Stichting-MINIX-Research-Foundation/netbsd.git
synced 2025-08-14 16:40:59 -04:00
14 lines
154 B
Plaintext
14 lines
154 B
Plaintext
// RUN: %clang_cc1 -fsyntax-only -verify %s
|
|
// expected-no-diagnostics
|
|
|
|
@class NSString;
|
|
id a;
|
|
NSString *b;
|
|
|
|
void f() {
|
|
bool b1 = a;
|
|
bool b2 = b;
|
|
}
|
|
|
|
|