]> git.saurik.com Git - apple/objc4.git/blob - test/load-order2.m
7537754ac5da7677667a26ee62f654e2966f8e3b
[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