Arquivos
hhvm/hphp/test/vm/static_closure_params.php
T
ptarjan a5b7b243d6 add test
Never shall this happen again
2013-03-25 13:31:16 -07:00

13 linhas
131 B
PHP

<?php
function a() {
$b = function ($c) {
static $d = 0;
var_dump($c + $d++);
};
$b(10);
$b(20);
$b(30);
}
a();