php-src/Zend/tests/enum/non-backed-enum-with-expr-value.phpt
Ilija Tovilo ddc0b490f7
Allow arbitrary const expressions in backed enums
Closes GH-7821
Closes GH-8190
Closes GH-8418
2022-06-12 22:56:05 +02:00

12 lines
218 B
PHP

--TEST--
Non-backed enum errors when case has int expression value
--FILE--
<?php
enum Foo {
case Bar = 1 + 1;
}
?>
--EXPECTF--
Fatal error: Case Bar of non-backed enum Foo must not have a value in %s on line %d