mirror of
https://github.com/php/php-src.git
synced 2024-11-23 18:04:36 +08:00
29 lines
411 B
PHP
29 lines
411 B
PHP
--TEST--
|
|
Bug #45910 (Cannot declare self-referencing constant)
|
|
--FILE--
|
|
<?php
|
|
|
|
class foo {
|
|
const AAA = 'x';
|
|
const BBB = 'a';
|
|
const CCC = 'a';
|
|
const DDD = self::AAA;
|
|
|
|
private static $foo = array(
|
|
self::BBB => 'a',
|
|
self::CCC => 'b',
|
|
self::DDD => self::AAA
|
|
);
|
|
|
|
public static function test() {
|
|
self::$foo;
|
|
}
|
|
}
|
|
|
|
foo::test();
|
|
|
|
print 1;
|
|
?>
|
|
--EXPECT--
|
|
1
|