New test.
authorDevang Patel <dpatel@apple.com>
Fri, 19 Oct 2007 01:28:02 +0000 (01:28 +0000)
committerDevang Patel <dpatel@apple.com>
Fri, 19 Oct 2007 01:28:02 +0000 (01:28 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@43162 91177308-0d34-0410-b5e6-96231b3b80d8

test/FrontendObjC/2007-10-18-ProDescriptor.ll [new file with mode: 0644]

diff --git a/test/FrontendObjC/2007-10-18-ProDescriptor.ll b/test/FrontendObjC/2007-10-18-ProDescriptor.ll
new file mode 100644 (file)
index 0000000..e87a43f
--- /dev/null
@@ -0,0 +1,19 @@
+// RUN: %llvmgcc -x objective-c -c %s -o /dev/null
+@protocol O
+@end
+@interface O < O > {
+}
+@end
+struct A {
+};
+@protocol AB
+- (unsigned) ver;
+@end
+@interface AGy:O < AB > {
+}
+@end
+@implementation AGy
+- (unsigned) ver {
+}
+@end
+