blob: 0f18d6fe159bc0b4913c295c0a29c465f4013037 [file] [log] [blame]
Daniel Dunbara5728872009-12-15 20:14:24 +00001// RUN: %clang_cc1 -triple=i686-apple-darwin9 -emit-llvm -o %t %s
Fariborz Jahanianbb99bde2009-02-16 21:41:04 +00002// 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