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