mirror of
https://github.com/php/php-src.git
synced 2025-01-09 20:44:33 +08:00
16 lines
202 B
PHP
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
|