1
0
mirror of https://github.com/php/php-src.git synced 2026-03-24 08:12:21 +01:00
Files
archived-php-src/Zend/tests/enum/final.phpt
2024-10-18 22:22:54 +02:00

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)