mirror of
https://github.com/capstone-engine/llvm-capstone.git
synced 2025-01-10 01:55:08 +00:00
c6e68daac0
llvm-svn: 166280
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;
|
|
}
|
|
|
|
|