Arquivos
hhvm/hphp/test/quick/closure_use_immediately.php
T
Paul Tarjan 017b6f231b spill the inputs of CreateCl onto the stack
I did this for the IR but didn't do it for the JIT :(
2013-04-23 09:52:57 -07:00

14 linhas
130 B
PHP

<?php
class A {}
function a() {
$b = new A;
$c = function() use ($b) {
return $b;
};
return $c();
}
var_dump(a());