1
0
mirror of https://github.com/php/php-src.git synced 2026-03-30 04:02:19 +02:00
Files
archived-php-src/Zend/tests/bug45910.phpt
2018-10-14 19:45:12 +02:00

29 lines
363 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