php-src/Zend/tests/032.phpt
2018-10-14 12:07:20 -03:00

14 lines
155 B
PHP

--TEST--
Testing array with '[]' passed as argument by reference
--FILE--
<?php
function test(&$var) { }
test($arr[]);
print "ok!\n";
?>
--EXPECT--
ok!