php-src/Zend/tests/bug74657.phpt
Ilija Tovilo 9e097822e8
Fix lineno for all constant expressions
Fixes GH-8821
Closes GH-8855
2023-02-02 19:03:47 +01:00

27 lines
473 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 %s(%d): [constant expression]()
#1 {main}
thrown in %sbug74657.php on line %d