summaryrefslogtreecommitdiff
path: root/tests/lang/passByReference_002.phpt
blob: d1968a35286ca1a0c1fa47b7ba6a4820509c1fb1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
--TEST--
Attempt to pass a constant by reference
--FILE--
<?php

function f(&$arg1)
{
	var_dump($arg1++);
}

f(2);

?>
--EXPECTF--
Fatal error: Only variables can be passed by reference in %s on line 8