mirror of
https://github.com/php/php-src.git
synced 2024-11-24 10:24:11 +08:00
23 lines
606 B
PHP
23 lines
606 B
PHP
--TEST--
|
|
Bug #70685: Segfault for getClosure() internal method rebind with invalid $this
|
|
--FILE--
|
|
<?php
|
|
|
|
class cls {}
|
|
|
|
$c = (new ReflectionMethod('SplStack', 'count'))->getClosure(new SplStack);
|
|
$c = $c->bindTo(new cls);
|
|
var_dump($c);
|
|
|
|
$c = (new ReflectionMethod('SplStack', 'count'))->getClosure(new SplStack);
|
|
$c = $c->bindTo(new SplStack, 'cls');
|
|
var_dump($c);
|
|
|
|
?>
|
|
--EXPECTF--
|
|
Warning: Cannot bind internal method SplDoublyLinkedList::count() to object of class cls in %s on line %d
|
|
NULL
|
|
|
|
Warning: Cannot rebind scope of closure created by ReflectionFunctionAbstract::getClosure() in %s on line %d
|
|
NULL
|