Updating submodules
[hiphop-php.git] / hphp / test / slow / array_escalation / 306.php
blobbc9190a334189191d8b06c8cc07b3c33d83e074d
1 <?hh
4 <<__EntryPoint>>
5 function main_306() {
6 $a = darray[0 => 'test'];
7 $a['test'] = 'test';
8 var_dump($a);
10 $a = darray(varray['test']);
11 $a['test'] = 'test';
12 var_dump($a);