blob: 8ad5027fa7e85b5651f739bd9f619f56865eb2e7 [file]
<?php
$staticLambda = static function() {
print 'abc';
};
call_user_func(static function() {
print 'abc';
});
?>