mirror of
https://github.com/php/php-src.git
synced 2024-12-12 03:15:29 +08:00
16 lines
350 B
PHP
16 lines
350 B
PHP
--TEST--
|
|
Bug #41633.3 (Crash instantiating classes with self-referencing constants)
|
|
--FILE--
|
|
<?php
|
|
class Foo {
|
|
const A = Foo::B;
|
|
const B = Foo::A;
|
|
}
|
|
echo Foo::A;
|
|
?>
|
|
--EXPECTF--
|
|
Fatal error: Uncaught Error: Cannot declare self-referencing constant 'Foo::B' in %sbug41633_3.php:%d
|
|
Stack trace:
|
|
#0 {main}
|
|
thrown in %sbug41633_3.php on line %d
|