]> oss.titaniummirror.com Git - msp430-gcc.git/blobdiff - gcc/testsuite/objc/execute/formal_protocol-7.m
Imported gcc-4.4.3
[msp430-gcc.git] / gcc / testsuite / objc / execute / formal_protocol-7.m
diff --git a/gcc/testsuite/objc/execute/formal_protocol-7.m b/gcc/testsuite/objc/execute/formal_protocol-7.m
deleted file mode 100644 (file)
index 14d7594..0000000
+++ /dev/null
@@ -1,44 +0,0 @@
-/* Contributed by Nicola Pero - Fri Mar  9 21:35:47 CET 2001 */
-#include <objc/objc.h>
-#include <objc/Object.h>
-#include <objc/Protocol.h>
-
-/* Test defining two protocols, one incorporating the other one. */
-
-@protocol Configuring
-- (void) configure;
-@end
-
-@protocol Processing <Configuring>
-- (void) process;
-@end
-
-/* A class adopting the protocol */
-@interface Test : Object <Processing>
-{
-  BOOL didConfigure;
-  BOOL didProcess;
-}
-@end
-
-@implementation Test
-- (void) configure
-{
-  didConfigure = YES;
-}
-- (void) process
-{
-  didProcess = YES;
-}
-@end
-
-int main (void)
-{
-  id <Processing> object = [Test new];
-
-  [object configure];
-  [object process];
-
-  return 0;
-}
-