mirror of
https://github.com/php/php-src.git
synced 2024-11-27 11:53:33 +08:00
d30cd7d7e7
Closes GH-5590
26 lines
438 B
PHP
26 lines
438 B
PHP
--TEST--
|
|
Bug #74657 (Undefined constants in array properties result in broken properties)
|
|
--FILE--
|
|
<?php
|
|
|
|
interface I {
|
|
}
|
|
|
|
class C {
|
|
const FOO = I::FOO;
|
|
|
|
public $options = [self::FOO => "bar"];
|
|
}
|
|
|
|
try {
|
|
var_dump((new C)->options);
|
|
} catch (Throwable $e) {}
|
|
|
|
var_dump((new C)->options);
|
|
?>
|
|
--EXPECTF--
|
|
Fatal error: Uncaught Error: Undefined constant I::FOO in %s:%d
|
|
Stack trace:
|
|
#0 {main}
|
|
thrown in %sbug74657.php on line %d
|