brintos

brintos / llvm-project-archived public Read only

0
0
Text · 279 B · 0f18d6f Raw
14 lines · plain
1// RUN: %clang_cc1 -triple=i686-apple-darwin9 -emit-llvm -o %t %s2// RUN: grep -e "T@\\\\22NSString\\\\22" %t3@interface NSString @end4 5typedef NSString StoreVersionID ;6 7@interface Parent 8  @property(retain) StoreVersionID* foo;9@end10 11@implementation Parent12@dynamic foo;13@end14