aboutsummaryrefslogtreecommitdiff
path: root/test/Rewriter/crash.m
diff options
context:
space:
mode:
Diffstat (limited to 'test/Rewriter/crash.m')
-rw-r--r--test/Rewriter/crash.m25
1 files changed, 25 insertions, 0 deletions
diff --git a/test/Rewriter/crash.m b/test/Rewriter/crash.m
new file mode 100644
index 000000000000..d4aba58c7b60
--- /dev/null
+++ b/test/Rewriter/crash.m
@@ -0,0 +1,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];
+}
+