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

21 lines
304 B
PHP

--TEST--
Closure 051: static::class in static closure in static method.
--FILE--
<?php
class A {
static function foo() {
$f = static function() {
return static::class;
};
return $f();
}
}
class B extends A {}
var_dump(B::foo());
?>
--EXPECT--
string(1) "B"