blob: c36b63bd6413e9530a9e27e58c67de6d319c0564 [file] [log] [blame]
Daniel Dunbara5728872009-12-15 20:14:24 +00001// RUN: %clang_cc1 -fsyntax-only -verify %s
Andy Gibbs8e8fb3b2012-10-19 12:44:48 +00002// expected-no-diagnostics
Fariborz Jahanian1f7711d2009-12-11 21:23:13 +00003
4@class NSString;
5id a;
6NSString *b;
7
8void f() {
9 bool b1 = a;
10 bool b2 = b;
11}
12
13