6 static void ctor(void) __attribute__((constructor));
9 // should be called during One's dlopen(), before Two's +load
10 testassert(state1 == 111);
11 testassert(state2 == 0);
19 // Does not run until One's +load completes
20 testassert(state1 == 1);