// this script was compiled with wurst 1.8.1.0-jenkins-Wurst-1367 globals integer test_y_u=0 endglobals native testSuccess takes nothing returns nothing function initGlobals takes nothing returns nothing endfunction function foo_u takes integer x_u returns integer return x_u + test_y_u endfunction function init_test takes nothing returns nothing local integer i_u set test_y_u = 1 set i_u = 2 if foo_u(i_u) == 3 then call testSuccess() endif endfunction function main takes nothing returns nothing call initGlobals() call init_test() endfunction function config takes nothing returns nothing endfunction