Fix unused warnings.
[official-gcc/graphite-test-results.git] / gcc / testsuite / objc / execute / many_args_method.m
blob6cc2e2535edc9e454074ffe4eb503b415e67e21d
1 /* Contributed by Nicola Pero - Fri Mar  9 19:39:15 CET 2001 */
2 #include <objc/objc.h>
4 /* Test the syntax of methods with many arguments */
6 @interface TestClass
8   Class isa;
10 + (int) sumInteger: (int)a   withInteger: (int)b;
11 + (int) sum: (int)a   : (int)b;
12 + (int) sumInteger: (int)a   withInteger: (int)b  withInteger: (int)c;
13 + (int) sum: (int)a   : (int)b  : (int)c;
14 @end
16 @implementation TestClass
17 + (int) sumInteger: (int)a  withInteger: (int)b
19   return a + b;
21 + (int) sum: (int)a   : (int)b
23   return [self sumInteger: a  withInteger: b];
25 + (int) sumInteger: (int)a   withInteger: (int)b  withInteger: (int)c
27   return a + b + c;
29 + (int) sum: (int)a   : (int)b  : (int)c
31   return [self sumInteger: a  withInteger: b  withInteger: c];
33 #ifdef __NEXT_RUNTIME__                                   
34 + initialize { return self; }
35 #endif
36 @end
39 int main (void)
41   if ([TestClass sumInteger: 1  withInteger: 1] != 2)
42     {
43       abort ();
44     }
45   if ([TestClass sum: 1  : 1] != 2)
46     {
47       abort ();
48     }
49   if ([TestClass sumInteger: 1  withInteger: 1  withInteger: 1] != 3)
50     {
51       abort ();
52     }
53   if ([TestClass sum: 1  : 1  : 1] != 3)
54     {
55       abort ();
56     }
58   return 0;