mirror of
https://github.com/php/php-src.git
synced 2024-12-15 04:45:03 +08:00
3dba00bc31
Here the active_op_array is still the surrounding file, but we do know the scope.
20 lines
336 B
PHP
20 lines
336 B
PHP
--TEST--
|
|
Bug #69676: Resolution of self::FOO in class constants not correct
|
|
--FILE--
|
|
<?php
|
|
class A {
|
|
const myConst = "const in A";
|
|
const myDynConst = self::myConst;
|
|
}
|
|
|
|
class B extends A {
|
|
const myConst = "const in B";
|
|
}
|
|
|
|
var_dump(B::myDynConst);
|
|
var_dump(A::myDynConst);
|
|
?>
|
|
--EXPECT--
|
|
string(10) "const in A"
|
|
string(10) "const in A"
|