mirror of
https://github.com/php/php-src.git
synced 2025-08-16 14:08:47 +02:00
12 lines
210 B
PHP
12 lines
210 B
PHP
--TEST--
|
|
Non-backed enum errors when case has string value
|
|
--FILE--
|
|
<?php
|
|
|
|
enum Foo {
|
|
case Bar = 'Bar';
|
|
}
|
|
|
|
?>
|
|
--EXPECTF--
|
|
Fatal error: Case Bar of non-backed enum Foo must not have a value in %s on line %d
|