YouCompleteMe/cpp/llvm/tools/clang/test/Rewriter/crash.m
Strahinja Val Markovic 1f51a89d39 Adding more llvm/clang files
These were ignored by git accidentally. We want ALL OF THEM since they all came
in the llvm/clang source distribution.
2012-07-05 17:55:45 -07:00

26 lines
441 B
Objective-C

// 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];
}