1
0
mirror of https://github.com/php/php-src.git synced 2026-03-25 00:32:23 +01:00
Files
archived-php-src/Zend/tests/enum/empty-from.phpt
2022-06-23 19:17:44 +02:00

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