mirror of
https://github.com/php/php-src.git
synced 2025-08-15 21:48:51 +02:00
14 lines
179 B
PHP
14 lines
179 B
PHP
--TEST--
|
|
Backed enums can contain magic constants
|
|
--FILE--
|
|
<?php
|
|
|
|
enum Foo: string {
|
|
case Bar = __FILE__;
|
|
}
|
|
|
|
echo Foo::Bar->value, "\n";
|
|
|
|
?>
|
|
--EXPECTF--
|
|
%smagic-constants.php
|