mirror of
https://github.com/php/php-src.git
synced 2026-04-23 16:08:35 +02:00
cb1d4ba97a
Closes GH-16491
14 lines
149 B
PHP
14 lines
149 B
PHP
--TEST--
|
|
Enum is final
|
|
--FILE--
|
|
<?php
|
|
|
|
enum Foo {}
|
|
|
|
$final = new ReflectionClass(Foo::class)->isFinal();
|
|
var_dump($final);
|
|
|
|
?>
|
|
--EXPECT--
|
|
bool(true)
|