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

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

f(2);

?>
--EXPECTF--
Fatal error: Uncaught Error: f(): Argument #1 ($arg1) cannot be passed by reference in %s:%d
Stack trace:
#0 {main}
  thrown in %s on line %d