summaryrefslogtreecommitdiff
path: root/Zend/tests/errmsg_022.phpt
blob: ea7b082f9ef79a448c8736055e026ab2c9000ab7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
--TEST--
errmsg: only variables can be passed by reference
--FILE--
<?php

function foo (&$var) {
}

foo(1);

echo "Done\n";
?>
--EXPECTF--	
Fatal error: Only variables can be passed by reference in %s on line %d