summaryrefslogtreecommitdiffstats
path: root/clang/test/Rewriter/crash.m
blob: 59f18f37c2c9e11843087bc001f6a5afb1c2ca63 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// RUN: clang -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;
}

OpenPOWER on IntegriCloud