mirror of
https://github.com/php/php-src.git
synced 2025-08-16 05:58:45 +02:00
12 lines
137 B
PHP
12 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
|