Disallow declarations outside of the global scope.
[hiphop-php.git] / hphp / test / slow / inout / interp-callm / tests / bad-call-14.php
blobf37814849b47939b170d3d0bf452a5ba6f48eff7
1 <?hh /* @generated by make_suite.sh */
3 function foo(inout $x) {}
5 function main() {
6 $x = Vector{1,2,3};
7 foo(inout $x[1]);
10 main();