mirror of
https://github.com/php/php-src.git
synced 2024-11-24 10:24:11 +08:00
17 lines
328 B
PHP
17 lines
328 B
PHP
--TEST--
|
|
Self-referencing constant expression (part of a constant AST)
|
|
--FILE--
|
|
<?php
|
|
class A {
|
|
const FOO = [self::BAR];
|
|
const BAR = [self::FOO];
|
|
}
|
|
var_dump(A::FOO);
|
|
?>
|
|
--EXPECTF--
|
|
Fatal error: Uncaught Error: Cannot declare self-referencing constant 'self::FOO' in %s:%d
|
|
Stack trace:
|
|
#0 {main}
|
|
thrown in %s on line %d
|
|
|