1
0
mirror of https://github.com/php/php-src.git synced 2026-03-26 17:22:15 +01:00
Files
archived-php-src/tests/lang/passByReference_002.phpt

16 lines
202 B
PHP

--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