mirror of
https://github.com/php/php-src.git
synced 2026-03-24 08:12:21 +01:00
13 lines
186 B
PHP
13 lines
186 B
PHP
--TEST--
|
|
GH-16315: Extending userland enum
|
|
--FILE--
|
|
<?php
|
|
|
|
enum MyEnum {}
|
|
|
|
class Demo extends MyEnum {}
|
|
|
|
?>
|
|
--EXPECTF--
|
|
Fatal error: Class Demo cannot extend enum MyEnum in %s on line 5
|