mirror of
https://github.com/php/php-src.git
synced 2025-08-16 05:58:45 +02:00
12 lines
163 B
PHP
12 lines
163 B
PHP
--TEST--
|
|
Enum is final
|
|
--FILE--
|
|
<?php
|
|
|
|
enum Foo {}
|
|
|
|
class Bar extends Foo {}
|
|
|
|
?>
|
|
--EXPECTF--
|
|
Fatal error: Class Bar cannot extend final class Foo in %s on line %d
|