summaryrefslogtreecommitdiffstats
path: root/test/Rewriter/crash.m
blob: c61100ed0f094410c3056b465e5730fc9c41baa6 (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_cc1 -rewrite-objc -fobjc-fragile-abi -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];
}