php-src/Zend/tests/closure_052.phpt

22 lines
300 B
Plaintext
Raw Normal View History

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