mirror of
https://github.com/php/php-src.git
synced 2024-12-17 22:09:12 +08:00
7aacc705d0
Closes GH-5958
22 lines
310 B
PHP
22 lines
310 B
PHP
--TEST--
|
|
Closure 053: self::class in static closure in non-static method.
|
|
--FILE--
|
|
<?php
|
|
|
|
class A {
|
|
function foo() {
|
|
$f = static function() {
|
|
return self::class;
|
|
};
|
|
return $f();
|
|
}
|
|
}
|
|
|
|
class B extends A {}
|
|
|
|
$b = new B;
|
|
var_dump($b->foo());
|
|
?>
|
|
--EXPECT--
|
|
string(1) "A"
|