diff options
Diffstat (limited to 'clang/test/ARCMT/safe-arc-assign.m.result')
-rw-r--r-- | clang/test/ARCMT/safe-arc-assign.m.result | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/clang/test/ARCMT/safe-arc-assign.m.result b/clang/test/ARCMT/safe-arc-assign.m.result new file mode 100644 index 0000000..c25955e --- /dev/null +++ b/clang/test/ARCMT/safe-arc-assign.m.result @@ -0,0 +1,14 @@ +// RUN: %clang_cc1 -triple x86_64-apple-darwin10 -fsyntax-only -fobjc-arc -x objective-c %s.result +// RUN: arcmt-test --args -triple x86_64-apple-darwin10 -fsyntax-only -x objective-c %s > %t +// RUN: diff %t %s.result + +void test12(id collection) { + for (__strong id x in collection) { + x = 0; + x = 0; + } + + for (__strong id x in collection) { + x = 0; + } +} |