Mercurial > hg > CbC > CbC_llvm
annotate clang/test/CodeGenObjC/objc2-property-encode.m @ 236:c4bab56944e8 llvm-original
LLVM 16
author | kono |
---|---|
date | Wed, 09 Nov 2022 17:45:10 +0900 |
parents | 1d019706d866 |
children |
rev | line source |
---|---|
150 | 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 |