OSDN Git Service

Added.
authorovidiu <ovidiu@138bc75d-0d04-0410-961f-82ee72b054a4>
Thu, 14 Dec 2000 22:02:18 +0000 (22:02 +0000)
committerovidiu <ovidiu@138bc75d-0d04-0410-961f-82ee72b054a4>
Thu, 14 Dec 2000 22:02:18 +0000 (22:02 +0000)
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@38261 138bc75d-0d04-0410-961f-82ee72b054a4

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
+