1
0
mirror of https://github.com/php/php-src.git synced 2026-03-24 00:02:20 +01:00
Files
archived-php-src/tests/classes/constants_error_003.phpt
2023-07-18 15:02:38 +02:00

23 lines
408 B
PHP

--TEST--
Basic class support - attempting to pass a class constant by reference.
--FILE--
<?php
class aclass
{
const myConst = "hello";
}
function f(&$a)
{
$a = "changed";
}
f(aclass::myConst);
var_dump(aclass::myConst);
?>
--EXPECTF--
Fatal error: Uncaught Error: f(): Argument #1 ($a) could not be passed by reference in %s:%d
Stack trace:
#0 {main}
thrown in %s on line %d