llvm-project
14 строк · 359.0 Байт
1// RUN: %clang_cc1 -triple x86_64-apple-darwin10 -fsyntax-only -fobjc-arc -x objective-c %s.result
2// RUN: arcmt-test --args -triple x86_64-apple-darwin10 -fsyntax-only -x objective-c %s > %t
3// RUN: diff %t %s.result
4
5void test12(id collection) {
6for (id x in collection) {
7x = 0;
8x = 0;
9}
10
11for (__strong id x in collection) {
12x = 0;
13}
14}
15