mirror of
https://github.com/php/php-src.git
synced 2024-11-25 19:05:31 +08:00
13 lines
159 B
PHP
Executable File
13 lines
159 B
PHP
Executable File
--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
|