mirror of
https://github.com/php/php-src.git
synced 2024-12-18 06:21:41 +08:00
16 lines
193 B
PHP
16 lines
193 B
PHP
--TEST--
|
|
Bug #34358 (Fatal error: Cannot re-assign $this(again))
|
|
--FILE--
|
|
<?php
|
|
class foo {
|
|
function bar() {
|
|
$ref = &$this;
|
|
}
|
|
}
|
|
$x = new foo();
|
|
$x->bar();
|
|
echo "ok\n";
|
|
?>
|
|
--EXPECT--
|
|
ok
|