blob: deae4b722b4ce66ac6b1fc3f91c84a76fc923a0c [file] [log] [blame]
Fariborz Jahanianbb99bde2009-02-16 21:41:04 +00001// RUN: clang -triple=i686-apple-darwin9 -fnext-runtime -emit-llvm -o %t %s &&
2// RUN: grep -e "T@\\\\22NSString\\\\22" %t
3@interface NSString @end
4
5typedef NSString StoreVersionID ;
6
7@interface Parent
8 @property(retain) StoreVersionID* foo;
9@end
10
11@implementation Parent
12@dynamic foo;
13@end