summaryrefslogtreecommitdiffstats
path: root/test/Rewriter/crash.m
blob: d4aba58c7b60289e2b1cab9aa1f5b9be2c4fc9a9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
// RUN: clang-cc -rewrite-objc -o - %s
// rdar://5950938
@interface NSArray {}
+ (id)arrayWithObjects:(id)firstObj, ...;
@end

@interface NSConstantString {}
@end

int main() {
    id foo = [NSArray arrayWithObjects:@"1", @"2", @"3", @"4", @"5", @"6", @"7", @"8", @"9", @"10", @"11", @"12", 0];
    return 0;
}

// rdar://6291588
@protocol A
@end

@interface Foo
@end

void func() {
  id <A> obj = (id <A>)[Foo bar];
}

OpenPOWER on IntegriCloud