summaryrefslogtreecommitdiff
path: root/Zend/tests/032.phpt
blob: 1c7f59e937fcd7ea2db3e65667c858deed9b4949 (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!