xref: /PHP-7.4/Zend/tests/return_types/022.phpt (revision d679f022)
1--TEST--
2Hint on closure with lexical vars
3--FILE--
4<?php
5$foo = "bar";
6$test = function() use($foo) : Closure {
7    return function() use ($foo) {
8        return $foo;
9    };
10};
11
12$callable = $test();
13var_dump($callable());
14--EXPECT--
15string(3) "bar"
16