// this script was compiled with wurst 1.8.1.0-jenkins-Wurst-1365 globals endglobals native testSuccess takes nothing returns nothing function initGlobals takes nothing returns nothing endfunction function init_test takes nothing returns nothing local integer tuple_temp = 1 local integer tuple_temp_1 = 2 local integer tuple_temp_2 = 3 local integer a_a = tuple_temp local integer a_b = tuple_temp_1 local integer a_c = tuple_temp_2 local integer tuple_temp_3 = 1 local integer tuple_temp_4 = 2 local integer tuple_temp_5 = 3 local integer b_a = tuple_temp_3 local integer b_b = tuple_temp_4 local integer b_c = tuple_temp_5 local integer tuple_temp_6 = 1 local integer tuple_temp_7 = 1 local integer tuple_temp_8 = 3 local integer c_a = tuple_temp_6 local integer c_b = tuple_temp_7 local integer c_c = tuple_temp_8 if a_a == b_a and a_b == b_b and a_c == b_c and ( not (b_a == c_a and b_b == c_b and b_c == c_c)) then call testSuccess() endif endfunction function main takes nothing returns nothing call initGlobals() call init_test() endfunction function config takes nothing returns nothing endfunction