mirror of
https://github.com/php/php-src.git
synced 2024-11-25 19:05:31 +08:00
13 lines
273 B
PHP
Executable File
13 lines
273 B
PHP
Executable File
--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: Cannot declare self-referencing constant 'Foo::B' in %sbug41633_3.php on line %d
|