php-src/Zend/tests/closure_023.phpt
2020-08-09 22:03:36 +02:00

15 lines
230 B
PHP

--TEST--
Closure 023: Closure declared in statically called method
--FILE--
<?php
class foo {
public static function bar() {
$func = function() { echo "Done"; };
$func();
}
}
foo::bar();
?>
--EXPECT--
Done