summaryrefslogtreecommitdiff
path: root/test/CodeGenObjC/objc2-property-encode.m
blob: 0015585b95e1a7d673c9d3434fcee53d50f8afd6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// RUN: clang-cc -triple=i686-apple-darwin9 -fnext-runtime -emit-llvm -o %t %s
// RUN: grep -e "T@\\\\22NSString\\\\22" %t
@interface NSString @end

typedef NSString StoreVersionID ;

@interface Parent 
  @property(retain) StoreVersionID* foo;
@end

@implementation Parent
@dynamic foo;
@end