mirror of
https://github.com/php/php-src.git
synced 2024-12-19 15:00:15 +08:00
17 lines
162 B
PHP
17 lines
162 B
PHP
--TEST--
|
|
Bug #70179 ($this refcount issue)
|
|
--FILE--
|
|
<?php
|
|
|
|
class X {
|
|
function __invoke() {
|
|
var_dump($this);
|
|
}
|
|
}
|
|
(new X)();
|
|
|
|
?>
|
|
--EXPECT--
|
|
object(X)#1 (0) {
|
|
}
|