mirror of
https://github.com/php/php-src.git
synced 2024-12-18 06:21:41 +08:00
26 lines
368 B
PHP
26 lines
368 B
PHP
--TEST--
|
|
self:: class constants should not be propagated into closures, due to scope rebinding
|
|
--FILE--
|
|
<?php
|
|
|
|
class A {
|
|
const C = 'A::C';
|
|
|
|
public function f() {
|
|
return function() {
|
|
return self::C;
|
|
};
|
|
}
|
|
}
|
|
|
|
class B {
|
|
const C = 'B::C';
|
|
}
|
|
|
|
$f = (new A)->f();
|
|
var_dump($f->bindTo(new B, 'B')());
|
|
|
|
?>
|
|
--EXPECT--
|
|
string(4) "B::C"
|