mirror of
https://github.com/php/php-src.git
synced 2024-12-18 14:30:35 +08:00
26 lines
383 B
PHP
26 lines
383 B
PHP
--TEST--
|
|
runtime cache must be invalidated for Closure::call()
|
|
--FILE--
|
|
<?php
|
|
|
|
class A {
|
|
private static $priv = 7;
|
|
|
|
static function get() {
|
|
return function() {
|
|
var_dump(isset(A::$priv));
|
|
};
|
|
}
|
|
}
|
|
|
|
$closure = A::get();
|
|
$closure(); // init rt_cache
|
|
$closure->call(new class(){}, null);
|
|
$closure();
|
|
|
|
?>
|
|
--EXPECT--
|
|
bool(true)
|
|
bool(false)
|
|
bool(true)
|