mirror of
https://github.com/php/php-src.git
synced 2025-08-16 05:58:45 +02:00

RFC: https://wiki.php.net/rfc/enumerations Co-authored-by: Nikita Popov <nikita.ppv@gmail.com> Closes GH-6489.
10 lines
165 B
PHP
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
|