1 /* Contributed by Nicola Pero - Wed Jun 6 14:34:23 CEST 2001 */
4 /* Test that +load is automatically called before main is run;
5 on two different classes. */
7 static int static_variable1 = 0;
8 static int static_variable2 = 0;
17 @implementation TestClass1
31 @implementation TestClass2
40 if (static_variable1 != 1 || static_variable2 != 1)