repo.or.cz
/
clang.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
history
|
raw
|
HEAD
[Heikki Kultala] This patch contains the ABI changes for the TCE target.
[clang.git]
/
test
/
CodeGenObjC
/
objc2-property-encode.m
blob
0f18d6fe159bc0b4913c295c0a29c465f4013037
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
4
5
typedef NSString StoreVersionID ;
6
7
@interface Parent
8
@property(retain) StoreVersionID* foo;
9
@end
10
11
@implementation Parent
12
@dynamic foo;
13
@end