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