Allow duplicate items in encoded urls
[hiphop-php.git] / hphp / test / slow / dynamic_variables / 1163.php
bloba0348090ea800984b26052f47fa9ef9a589cae42
1 <?php
3 function test($a) {
4 $b = 5;
5 global $$a;
6 var_dump($b);
8 test('b');