mirror of
https://github.com/php/php-src.git
synced 2024-11-25 02:44:58 +08:00
21 lines
343 B
PHP
21 lines
343 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: Only variables can be passed by reference in %s on line 12
|