]> oss.titaniummirror.com Git - msp430-gcc.git/blobdiff - gcc/testsuite/objc/execute/protocol.m
Imported gcc-4.4.3
[msp430-gcc.git] / gcc / testsuite / objc / execute / protocol.m
diff --git a/gcc/testsuite/objc/execute/protocol.m b/gcc/testsuite/objc/execute/protocol.m
deleted file mode 100644 (file)
index 539fc29..0000000
+++ /dev/null
@@ -1,21 +0,0 @@
-@protocol Foo
-- (void)foo;
-@end
-
-@interface Foo_c <Foo>
-{
-}
-- (void)foo;
-@end
-
-@implementation Foo_c
-- (void)foo
-{
-}
-@end
-
-int main (void)
-{
-  return 0;
-}
-