polserver/testsuite/escript/switch/switch11.src
turleypol fd1dcb6512 switch tests where never executed :(
fixed unaligned load for switch statements
2018-06-03 21:54:16 +02:00

12 lines
154 B
Text

// switch11
//
function foo( p )
case (p)
4: return "four";
default:
endcase
endfunction
print( foo( 1 ) );
print( foo( 4 ) );