mirror of
https://github.com/php/php-src.git
synced 2026-03-31 20:53:00 +02:00
RFC: https://wiki.php.net/rfc/enumerations Co-authored-by: Nikita Popov <nikita.ppv@gmail.com> Closes GH-6489.
13 lines
172 B
PHP
13 lines
172 B
PHP
--TEST--
|
|
Enum is final
|
|
--FILE--
|
|
<?php
|
|
|
|
enum Foo {}
|
|
|
|
class Bar extends Foo {}
|
|
|
|
?>
|
|
--EXPECTF--
|
|
Fatal error: Class Bar may not inherit from final class (Foo) in %s on line %d
|