mediawiki-extensions-AbuseF.../tests/parserTests/array-assignment.t

8 lines
253 B
Perl
Raw Normal View History

test_array := [ [1, 2], [3, 4], 'useless' ];
test_array[1] := 42;
test_array[ if true then 2 else 0 end] := 'foo';
test_array[] := 17;
test_array[0][0] == 1 & test_array[0][1] == 2 & test_array[1] == 42 & test_array[2] === 'foo' & test_array[3] == 17