John McCall | d1e40d5 | 2011-10-02 01:16:38 +0000 | [diff] [blame^] | 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 | ||||
John McCall | 8f0e8d2 | 2011-06-15 23:25:17 +0000 | [diff] [blame] | 3 | // RUN: diff %t %s.result |
4 | |||||
5 | void test12(id collection) { | ||||
6 | for (id x in collection) { | ||||
7 | x = 0; | ||||
8 | x = 0; | ||||
9 | } | ||||
10 | |||||
11 | for (__strong id x in collection) { | ||||
12 | x = 0; | ||||
13 | } | ||||
14 | } |