]> git.saurik.com Git - apple/objc4.git/blob - test/load-order1.m
objc4-437.tar.gz
[apple/objc4.git] / test / load-order1.m
1 #include "test.h"
2
3 extern int state2, state3;
4
5 int state1 = 0;
6
7 @interface One @end
8 @implementation One
9 +(void)load
10 {
11 testassert(state2 == 2 && state3 == 3);
12 state1 = 1;
13 }
14 @end