12 lines
174 B
PHP
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
|