Remove support for variable variables from parser, typechecker and frontend
[hiphop-php.git] / hphp / test / zend / good / tests / lang / array_shortcut_003.php
blobc4c0274bcef537c05c9c815a85a375a4ba33dc4b
1 <?php
2 $a = [1, 2, 3, 4, 5];
3 print_r([$a[1], $a[3]]);
4 ?>