php-src/Zend/tests/bug70179.phpt

17 lines
162 B
Plaintext
Raw Normal View History

2015-08-01 18:35:56 +00:00
--TEST--
Bug #70179 ($this refcount issue)
--FILE--
<?php
class X {
function __invoke() {
var_dump($this);
}
}
(new X)();
?>
--EXPECT--
object(X)#1 (0) {
}