diff options
Diffstat (limited to 'test/ARCMT/protected-scope.m.result')
-rw-r--r-- | test/ARCMT/protected-scope.m.result | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/test/ARCMT/protected-scope.m.result b/test/ARCMT/protected-scope.m.result new file mode 100644 index 0000000..f385d88 --- /dev/null +++ b/test/ARCMT/protected-scope.m.result @@ -0,0 +1,39 @@ +// 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 +// DISABLE: mingw32 + +#include "Common.h" + +void test(id p, int x) { + int v; + switch(x) { + case 0: { + v++; + id w1 = p; + id w2 = p; + break; + } + case 1: { + v++; + id w3 = p; + break; + } + case 2: + case 3: + break; + default: + break; + } +} + +void test2(int p) { + switch (p) { + case 3: {; + NSObject *o = [[NSObject alloc] init]; + break; + } + default: + break; + } +} |