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