Mercurial > hg > CbC > CbC_llvm
comparison clang/test/CodeGenObjC/objc-dictionary-literal.m @ 236:c4bab56944e8 llvm-original
LLVM 16
author | kono |
---|---|
date | Wed, 09 Nov 2022 17:45:10 +0900 |
parents | 1d019706d866 |
children |
comparison
equal
deleted
inserted
replaced
232:70dce7da266c | 236:c4bab56944e8 |
---|---|
15 @end | 15 @end |
16 | 16 |
17 @interface NSString<NSCopying> | 17 @interface NSString<NSCopying> |
18 @end | 18 @end |
19 | 19 |
20 int main() { | 20 int main(void) { |
21 NSDictionary *dict = @{ @"name":@666 }; | 21 NSDictionary *dict = @{ @"name":@666 }; |
22 NSDictionary *dict1 = @{ @"name":@666 }; | 22 NSDictionary *dict1 = @{ @"name":@666 }; |
23 NSDictionary *dict2 = @{ @"name":@666 }; | 23 NSDictionary *dict2 = @{ @"name":@666 }; |
24 return 0; | 24 return 0; |
25 } | 25 } |