php-src/Zend/tests/enum/no-write-properties-through-foreach-reference.phpt
Ilija Tovilo fdbe910b3b
Fix indirect readonly error messages (#14979)
$obj->ro[] = 42;, passByRef($obj->ro); and the likes should emit an indirect
modification error message. This message already existed but was used
inconsistently.
2024-07-16 23:24:07 +02:00

22 lines
354 B
PHP

--TEST--
Enum properties cannot be written to through reference in foreach
--FILE--
<?php
enum Foo: int {
case Bar = 0;
}
try {
$bar = Foo::Bar;
foreach ([1] as &$bar->value) {}
} catch (Error $e) {
echo $e->getMessage() . "\n";
}
var_dump(Foo::Bar->value);
?>
--EXPECT--
Cannot indirectly modify readonly property Foo::$value
int(0)