mirror of
https://github.com/php/php-src.git
synced 2025-08-15 13:38:49 +02:00
10 lines
183 B
PHP
10 lines
183 B
PHP
--TEST--
|
|
GH-16315: Extending built-in enum
|
|
--FILE--
|
|
<?php
|
|
|
|
class Demo extends RoundingMode {}
|
|
|
|
?>
|
|
--EXPECTF--
|
|
Fatal error: Class Demo cannot extend enum RoundingMode in %s on line %d
|