mirror of
https://github.com/php/php-src.git
synced 2026-04-20 06:21:12 +02:00
RFC: https://wiki.php.net/rfc/enumerations Co-authored-by: Nikita Popov <nikita.ppv@gmail.com> Closes GH-6489.
17 lines
165 B
PHP
17 lines
165 B
PHP
--TEST--
|
|
Enum no new
|
|
--FILE--
|
|
<?php
|
|
|
|
enum Foo {}
|
|
|
|
try {
|
|
new Foo();
|
|
} catch (\Error $e) {
|
|
echo $e->getMessage();
|
|
}
|
|
|
|
?>
|
|
--EXPECT--
|
|
Cannot instantiate enum Foo
|