Added.
authorOvidiu Predescu <ovidiu@gcc.gnu.org>
Thu, 14 Dec 2000 22:02:18 +0000 (22:02 +0000)
committerOvidiu Predescu <ovidiu@gcc.gnu.org>
Thu, 14 Dec 2000 22:02:18 +0000 (22:02 +0000)
From-SVN: r38261

gcc/testsuite/objc/execute/protocol.m [new file with mode: 0644]

diff --git a/gcc/testsuite/objc/execute/protocol.m b/gcc/testsuite/objc/execute/protocol.m
new file mode 100644 (file)
index 0000000..96ce875
--- /dev/null
@@ -0,0 +1,16 @@
+@protocol Foo
+- (void)foo;
+@end
+
+@interface Foo_c <Foo>
+{
+}
+- (void)foo;
+@end
+
+@implementation Foo_c
+- (void)foo
+{
+}
+@end
+