Disallow declarations outside of the global scope.
[hiphop-php.git] / hphp / test / slow / inout / tuple / tests / bad-call-10.php
blob9c938f5c82284a2fa255d82e323d1e489ff7174d
1 <?hh
3 function foo(inout $x) {}
5 function main() {
6 $x = array(1, Vector{1,array('a', 'b', 'c'),3});
7 foo(inout $x[1][1][1]);
10 main();