OSDN Git Service

* objc/execute/exceptions/exceptions.exp: New exp for the exceptions
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / objc / execute / np-1.m
1 /*
2  * Contributed by Nicola Pero <n.pero@mi.flashnet.it>
3  * Tue Sep 19 4:29AM
4  */
5
6 #include <objc/objc.h>
7 #include <objc/Protocol.h>
8
9 @protocol MyProtocol
10 - (oneway void) methodA;
11 @end
12
13 @interface MyObject <MyProtocol>
14 @end
15
16 @implementation MyObject
17 - (oneway void) methodA
18 {
19 }
20 @end
21
22 int main (void)
23 {
24   MyObject *object = nil;
25
26   [object methodA];
27
28    exit (0);
29 }
30
31