mirror of
https://github.com/php/php-src.git
synced 2024-11-23 18:04:36 +08:00
20 lines
273 B
PHP
20 lines
273 B
PHP
--TEST--
|
|
Bug #67922: Member function not found when dereferencing in write-context
|
|
--FILE--
|
|
<?php
|
|
|
|
class C {
|
|
public function test() {
|
|
return new stdClass;
|
|
}
|
|
}
|
|
|
|
$b = new stdClass;
|
|
$b->c = new C;
|
|
$b->c->test()->d = 'str';
|
|
|
|
?>
|
|
===DONE===
|
|
--EXPECT--
|
|
===DONE===
|