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