No empty .Rs/.Re
[netbsd-mini2440.git] / gnu / dist / gcc4 / gcc / testsuite / objc / execute / np-1.m
blob6de2623e61b813058fb9abd697c1267a1efbec50
1 /*
2  * Contributed by Nicola Pero <n.pero@mi.flashnet.it>
3  * Tue Sep 19 4:29AM
4  */
6 #include <objc/objc.h>
7 #include <objc/Protocol.h>
9 @protocol MyProtocol
10 - (oneway void) methodA;
11 @end
13 @interface MyObject <MyProtocol>
14 @end
16 @implementation MyObject
17 - (oneway void) methodA
20 @end
22 int main (void)
24   MyObject *object = nil;
26   [object methodA];
28    exit (0);