1 /* Contributed by Nicola Pero - Fri Mar 9 21:35:47 CET 2001 */
4 #import "../../objc-obj-c++-shared/Protocol1.h"
6 /* Test defining two protocols, one incorporating the other one. */
12 @protocol Processing <Configuring>
16 /* A class adopting the protocol */
17 @interface Test : Object <Processing>
37 id <Processing> object = [Test new];
44 #include "../../objc-obj-c++-shared/Object1-implementation.h"