mirror of
https://github.com/php/php-src.git
synced 2024-11-24 02:15:04 +08:00
9975986b7e
Closes GH-5999
23 lines
405 B
PHP
23 lines
405 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) cannot be passed by reference in %s:%d
|
|
Stack trace:
|
|
#0 {main}
|
|
thrown in %s on line %d
|