Mercurial > hg > CbC > CbC_llvm
annotate clang/test/CodeGenObjC/objc2-property-encode.m @ 150:1d019706d866
LLVM10
author | anatofuz |
---|---|
date | Thu, 13 Feb 2020 15:10:13 +0900 |
parents | |
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 |