--TEST--
Square bracket array shortcut test
--FILE--
<?php
print_r
([123]);
?>
--EXPECT--
Array
(
    [0] => 1
    [1] => 2
    [2] => 3
)