mirror of
https://github.com/php/php-src.git
synced 2026-03-25 00:32:23 +01:00
13 lines
137 B
PHP
13 lines
137 B
PHP
--TEST--
|
|
Empty enum with from/tryFrom doens't segfault
|
|
--FILE--
|
|
<?php
|
|
|
|
enum A: string {}
|
|
|
|
var_dump(A::tryFrom('B'));
|
|
|
|
?>
|
|
--EXPECT--
|
|
NULL
|