php-src/Zend/tests/bug34358.phpt
2012-10-10 10:27:49 +08:00

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