php-src/Zend/tests/enum/backed-invalid.phpt
Ilija Tovilo 269c8dac1d
Implement enums
RFC: https://wiki.php.net/rfc/enumerations

Co-authored-by: Nikita Popov <nikita.ppv@gmail.com>

Closes GH-6489.
2021-03-17 19:08:03 +01:00

10 lines
165 B
PHP

--TEST--
Invalid enum backing type
--FILE--
<?php
enum Foo: Bar {}
?>
--EXPECTF--
Fatal error: Enum backing type must be int or string, Bar given in %s on line %d