mirror of
https://github.com/php/php-src.git
synced 2024-12-25 01:40:50 +08:00
13 lines
159 B
Plaintext
13 lines
159 B
Plaintext
|
--TEST--
|
||
|
Bug #41633.1 (self:: doesn't work for constants)
|
||
|
--FILE--
|
||
|
<?php
|
||
|
class Foo {
|
||
|
const A = self::B;
|
||
|
const B = "ok";
|
||
|
}
|
||
|
echo Foo::A."\n";
|
||
|
?>
|
||
|
--EXPECT--
|
||
|
ok
|