mirror of
https://github.com/php/php-src.git
synced 2024-12-02 22:34:55 +08:00
23 lines
350 B
PHP
23 lines
350 B
PHP
--TEST--
|
|
Bug #69676: Resolution of self::FOO in class constants not correct (variation)
|
|
--FILE--
|
|
<?php
|
|
|
|
class Foo {
|
|
const A = 'Foo::A';
|
|
const B = self::A . ' and ' . self::C;
|
|
const C = 'Foo::C';
|
|
|
|
}
|
|
|
|
class Bar extends Foo {
|
|
const A = 'Bar::A';
|
|
const C = 'Bar::C';
|
|
}
|
|
|
|
var_dump(Bar::B);
|
|
|
|
?>
|
|
--EXPECT--
|
|
string(17) "Foo::A and Foo::C"
|