summaryrefslogtreecommitdiff
path: root/Zend/tests/032.phpt
blob: 8f7f9946473ab2cd2551d56fe62ce29fd60007ad (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
--TEST--
Testing array with '[]' passed as argument by reference
--FILE--
<?php 

function test(&$var) { }
test($arr[]);

print "ok!\n";

?>
--EXPECT--
ok!