load-order3.m 135 B

123456789101112
  1. #include "test.h"
  2. int state3 = 0;
  3. OBJC_ROOT_CLASS
  4. @interface Three @end
  5. @implementation Three
  6. +(void)load
  7. {
  8. state3 = 3;
  9. }
  10. @end