2003-12-26 Guilhem Lavaux <guilhem@kaffe.org>
[official-gcc.git] / gcc / testsuite / objc / execute / formal_protocol-7.m
blob14d7594e163933fc8ebc6ccbdbad2d27fefb9637
1 /* Contributed by Nicola Pero - Fri Mar  9 21:35:47 CET 2001 */
2 #include <objc/objc.h>
3 #include <objc/Object.h>
4 #include <objc/Protocol.h>
6 /* Test defining two protocols, one incorporating the other one. */
8 @protocol Configuring
9 - (void) configure;
10 @end
12 @protocol Processing <Configuring>
13 - (void) process;
14 @end
16 /* A class adopting the protocol */
17 @interface Test : Object <Processing>
19   BOOL didConfigure;
20   BOOL didProcess;
22 @end
24 @implementation Test
25 - (void) configure
27   didConfigure = YES;
29 - (void) process
31   didProcess = YES;
33 @end
35 int main (void)
37   id <Processing> object = [Test new];
39   [object configure];
40   [object process];
42   return 0;