mirror of
https://github.com/php/php-src.git
synced 2026-04-26 17:38:14 +02:00
269c8dac1d
RFC: https://wiki.php.net/rfc/enumerations Co-authored-by: Nikita Popov <nikita.ppv@gmail.com> Closes GH-6489.
17 lines
157 B
PHP
17 lines
157 B
PHP
--TEST--
|
|
Enum keyword can be followed by arbitrary whitespaces
|
|
--FILE--
|
|
<?php
|
|
|
|
enum A {}
|
|
enum B {}
|
|
enum C {}
|
|
enum E {}
|
|
enum
|
|
F {}
|
|
enum
|
|
G {}
|
|
|
|
?>
|
|
--EXPECT--
|