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