php-src/Zend/tests/032.phpt

14 lines
156 B
Plaintext
Raw Normal View History

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