blob: 59f18f37c2c9e11843087bc001f6a5afb1c2ca63 [file] [log] [blame]
Chris Lattner12076242008-05-23 23:29:33 +00001// RUN: clang -rewrite-objc -o - %s
2// rdar://5950938
3@interface NSArray {}
4+ (id)arrayWithObjects:(id)firstObj, ...;
5@end
6
7@interface NSConstantString {}
8@end
9
10int main() {
11 id foo = [NSArray arrayWithObjects:@"1", @"2", @"3", @"4", @"5", @"6", @"7", @"8", @"9", @"10", @"11", @"12", 0];
12 return 0;
13}
14