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.
12 lines
174 B
PHP
12 lines
174 B
PHP
--TEST--
|
|
Enum disallows static properties
|
|
--FILE--
|
|
<?php
|
|
|
|
enum Foo {
|
|
public static $bar;
|
|
}
|
|
|
|
?>
|
|
--EXPECTF--
|
|
Fatal error: Enums may not include properties in %s on line %d
|