Home | History | Annotate | Download | only in SemaObjC
      1 // RUN: %clang_cc1 -fsyntax-only -verify %s
      2 
      3 @protocol MyProtocol
      4 @end
      5 
      6 id<MyProtocol> obj_p = 0;
      7 
      8 int main()
      9 {
     10   obj_p = 0;
     11 }
     12 
     13