mirror of
https://github.com/php/php-src.git
synced 2026-03-24 08:12:21 +01:00
RFC: https://wiki.php.net/rfc/enumerations Co-authored-by: Nikita Popov <nikita.ppv@gmail.com> Closes GH-6489.
11 lines
165 B
PHP
11 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
|