]> git.saurik.com Git - apple/objc4.git/blobdiff - test/load-order3.m
objc4-437.tar.gz
[apple/objc4.git] / test / load-order3.m
diff --git a/test/load-order3.m b/test/load-order3.m
new file mode 100644 (file)
index 0000000..80a936a
--- /dev/null
@@ -0,0 +1,11 @@
+#include "test.h"
+
+int state3 = 0;
+
+@interface Three @end
+@implementation Three
++(void)load 
+{ 
+    state3 = 3;
+}
+@end