Add more reference-binding examples from the C++0x working paper, all of which seem...
[clang.git] / test / CodeGenObjC / objc2-strong-cast-1.m
blobb79f8a00f7a32bf0880af15ecfc572b57e649523
1 // RUN: %clang_cc1 -triple x86_64-unknown-unknown -fobjc-gc -emit-llvm -o %t %s
2 // RUN: %clang_cc1 -x objective-c++ -triple x86_64-unknown-unknown -fobjc-gc -emit-llvm -o %t %s
4 @interface I {
5   __attribute__((objc_gc(strong))) int *i_IdocumentIDs;
6   __attribute__((objc_gc(strong))) long *l_IdocumentIDs;
7   __attribute__((objc_gc(strong))) long long *ll_IdocumentIDs;
8   __attribute__((objc_gc(strong))) float *IdocumentIDs;
9   __attribute__((objc_gc(strong))) double *d_IdocumentIDs;
11 - (void) _getResultsOfMatches;
12 @end
14 @implementation I
15 -(void) _getResultsOfMatches {
16     IdocumentIDs[2] = IdocumentIDs[3];
17     d_IdocumentIDs[2] = d_IdocumentIDs[3];
18     l_IdocumentIDs[2] = l_IdocumentIDs[3];
19     ll_IdocumentIDs[2] = ll_IdocumentIDs[3];
20     i_IdocumentIDs[2] = i_IdocumentIDs[3];
23 @end