StmtPrinter: factor out arg printing code to PrintCallArgs
[clang.git] / test / CodeGenObjC / objc2-property-encode.m
blob0f18d6fe159bc0b4913c295c0a29c465f4013037
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
5 typedef NSString StoreVersionID ;
7 @interface Parent 
8   @property(retain) StoreVersionID* foo;
9 @end
11 @implementation Parent
12 @dynamic foo;
13 @end