Merged r157653 through r157895 into branch.
[official-gcc.git] / gcc / testsuite / objc / execute / IMP.m
blobf0790975780d4e1a980d5de96267a1681ffacf0c
1 /* Contributed by Nicola Pero - Fri Mar  9 19:39:15 CET 2001 */
3 #include <stdlib.h>
4 #include "../../objc-obj-c++-shared/next-mapping.h"
5 #include <objc/objc.h>
6 #include <objc/objc-api.h>
8 /* Test getting and calling the IMP of a method */
10 @interface TestClass
12   Class isa;
14 - (int) next: (int)a;
15 @end
17 @implementation TestClass
18 - (int) next: (int)a
20   return a + 1;
22 @end
24 int main (void)
26   Class class;
27   SEL selector;
28   int (* imp) (id, SEL, int);
29   
30   class = objc_get_class ("TestClass");
31   selector = @selector (next:);
32   imp = (int (*)(id, SEL, int))method_get_imp 
33     (class_get_class_method (class, selector));
34   
35   if (imp (class, selector, 5) != 6)
36     {
37       abort ();
38     }
40   return 0;