mirror of
https://github.com/php/php-src.git
synced 2025-08-15 13:38:49 +02:00

RFC: https://wiki.php.net/rfc/enumerations Co-authored-by: Nikita Popov <nikita.ppv@gmail.com> Closes GH-6489.
12 lines
149 B
PHP
12 lines
149 B
PHP
--TEST--
|
|
Enum case in class
|
|
--FILE--
|
|
<?php
|
|
|
|
class Foo {
|
|
case Bar;
|
|
}
|
|
|
|
?>
|
|
--EXPECTF--
|
|
Fatal error: Case can only be used in enums in %s on line %d
|