Disallow declarations outside of the global scope.
[hiphop-php.git] / hphp / test / slow / inout / tuple / tests / msrv-unpack-error.php
blobea1a01cbb9da2fe1487e8a703102b16787c75760
1 <?hh
3 function foo(inout $x, $y) {
4 echo "whoops\n";
7 function main($y, $z) {
8 var_dump($y(5, ...$z));
11 main('foo$0$inout', array(12));