1
0
mirror of https://github.com/php/php-src.git synced 2026-04-18 21:41:22 +02:00
Files
archived-php-src/Zend/tests/enum/no-static-properties.phpt
Ilija Tovilo 269c8dac1d Implement enums
RFC: https://wiki.php.net/rfc/enumerations

Co-authored-by: Nikita Popov <nikita.ppv@gmail.com>

Closes GH-6489.
2021-03-17 19:08:03 +01:00

13 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