Home | History | Annotate | Download | only in CodeGenObjC
      1 // RUN: %clang_cc1 -triple=i686-apple-darwin9 -emit-llvm -o %t %s
      2 // RUN: grep -e "T@\\\\22NSString\\\\22" %t
      3 @interface NSString @end
      4 
      5 typedef NSString StoreVersionID ;
      6 
      7 @interface Parent 
      8   @property(retain) StoreVersionID* foo;
      9 @end
     10 
     11 @implementation Parent
     12 @dynamic foo;
     13 @end
     14