summaryrefslogtreecommitdiff
path: root/test/FrontendObjC/2007-10-18-ProDescriptor.m
diff options
context:
space:
mode:
authorDan Gohman <gohman@apple.com>2007-12-11 15:55:52 +0000
committerDan Gohman <gohman@apple.com>2007-12-11 15:55:52 +0000
commit7228c9e92c2199705e3e64f5500e571e81898d02 (patch)
tree740cde57cb40fdf641ae1f841dd8ae380bd08b2a /test/FrontendObjC/2007-10-18-ProDescriptor.m
parent83935ac59d5f1760cb127a57e48bb74712ef9507 (diff)
downloadllvm-7228c9e92c2199705e3e64f5500e571e81898d02.tar.gz
llvm-7228c9e92c2199705e3e64f5500e571e81898d02.tar.bz2
llvm-7228c9e92c2199705e3e64f5500e571e81898d02.tar.xz
Rename these tests to use the appropriate suffixes.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@44867 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/FrontendObjC/2007-10-18-ProDescriptor.m')
-rw-r--r--test/FrontendObjC/2007-10-18-ProDescriptor.m19
1 files changed, 19 insertions, 0 deletions
diff --git a/test/FrontendObjC/2007-10-18-ProDescriptor.m b/test/FrontendObjC/2007-10-18-ProDescriptor.m
new file mode 100644
index 0000000000..e87a43ffc9
--- /dev/null
+++ b/test/FrontendObjC/2007-10-18-ProDescriptor.m
@@ -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
+