Disallow declarations outside of the global scope.
[hiphop-php.git] / hphp / test / slow / inout / tuple / tests / inout_param_mixed_hint.php
blobf94bd36e1d967f4d1fdf0f3e00ae11c832796f55
1 <?hh
3 function foo(inout mixed $thing) {
4 $thing = 5;
7 function main() {
8 $a = 2;
9 foo(&$a);
10 var_dump($a);
13 main();