php-src/Zend/tests/bug70987.phpt

16 lines
216 B
Plaintext
Raw Normal View History

--TEST--
Bug #70987 (static::class within Closure::call() causes segfault)
--FILE--
<?php
class foo {}
$bar = function () {
return static::class;
};
var_dump($bar->call(new foo));
?>
--EXPECT--
string(3) "foo"