Home | History | Annotate | Download | only in SemaObjCXX
      1 // RUN: %clang_cc1 -fsyntax-only -verify %s
      2 
      3 @class NSString;
      4 id a;
      5 NSString *b;
      6 
      7 void f() {
      8   bool b1 = a;
      9   bool b2 = b;
     10 }
     11 
     12 
     13