Updating submodules
[hiphop-php.git] / hphp / test / slow / list_assignment / 45.php
blob4e12041028adf10a503515cdc7e99da6b6109df8
1 <?hh
3 function test() {
4 $a = varray['abc', 'cde', 'fgh'];
5 list($a[0], $a[1], $a) = $a;
6 var_dump($a);
9 <<__EntryPoint>>
10 function main_45() {
11 test();