php-src/Zend/tests/indirect_method_call_004.phpt
2020-02-03 22:52:20 +01:00

27 lines
362 B
PHP

--TEST--
Indirect method call and cloning
--FILE--
<?php
class bar {
public $z;
public function __construct() {
$this->z = new stdclass;
}
public function getZ() {
return $this->z;
}
}
var_dump(clone (new bar)->z);
var_dump(clone (new bar)->getZ());
?>
--EXPECTF--
object(stdClass)#%d (0) {
}
object(stdClass)#%d (0) {
}