mirror of
https://github.com/php/php-src.git
synced 2024-12-18 22:41:20 +08:00
29 lines
364 B
Plaintext
29 lines
364 B
Plaintext
|
--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
|