1#include "test.h"
2
3extern int state3;
4
5int state2 = 0;
6
7OBJC_ROOT_CLASS
8@interface Two @end
9@implementation Two
10+(void)load 
11{ 
12    testassert(state3 == 3);
13    state2 = 2;
14}
15@end
16