From 2e82aa0fd98630cc5aaa888d2ce8810f31dc2ca3 Mon Sep 17 00:00:00 2001 From: Ovidiu Predescu Date: Thu, 14 Dec 2000 22:02:18 +0000 Subject: [PATCH] Added. From-SVN: r38261 --- gcc/testsuite/objc/execute/protocol.m | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 gcc/testsuite/objc/execute/protocol.m diff --git a/gcc/testsuite/objc/execute/protocol.m b/gcc/testsuite/objc/execute/protocol.m new file mode 100644 index 00000000000..96ce8751a1c --- /dev/null +++ b/gcc/testsuite/objc/execute/protocol.m @@ -0,0 +1,16 @@ +@protocol Foo +- (void)foo; +@end + +@interface Foo_c +{ +} +- (void)foo; +@end + +@implementation Foo_c +- (void)foo +{ +} +@end +