2003-12-26 Guilhem Lavaux <guilhem@kaffe.org>
[official-gcc.git] / gcc / testsuite / objc.dg / zero-link-3.m
blobaf624abf0962933d9accfd2e32fe68ed4b127560
1 /* Check that the '-fzero-link' flag doesn't prevent messaging from working. */
2 /* Contributed by Ziemowit Laski <zlaski@apple.com>.  */
3 /* { dg-options "-fnext-runtime -fzero-link -lobjc" } */
4 /* { dg-do run { target *-*-darwin* } } */
6 #import <objc/objc.h>
7 #import <objc/Object.h>
9 extern void abort(void);
10 #define CHECK_IF(expr) if(!(expr)) abort();
12 @interface Base: Object
13 + (int) getValue;
14 @end
16 @implementation Base
17 + (int) getValue { return 1593; }
18 @end
20 int main(void) {
21   int val = [Base getValue];
22   CHECK_IF(val == 1593);
23   return 0;