ru_php/Zend/tests/closures/closure_063.phpt

12 lines
174 B
PHP

--TEST--
Closure::bindTo leaks with "fake" closure
--FILE--
<?php
function foo(){
static $y;
}
Closure::fromCallable('foo')->bindTo(new stdClass);
?>
DONE
--EXPECT--
DONE