llvm-capstone/clang/test/ARCMT/protected-scope.m
Alp Toker 5a60686cf9 Remove all DISABLE lines from tests
There's no evidence that a 'DISABLE' directive ever existed.

Let's see if anything breaks..

llvm-svn: 196733
2013-12-08 21:12:19 +00:00

37 lines
598 B
Objective-C

// 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
#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];
[o release];
break;
default:
break;
}
}