mirror of
https://github.com/php/php-src.git
synced 2026-03-24 00:02:20 +01:00
10 lines
180 B
PHP
10 lines
180 B
PHP
--TEST--
|
|
Test for bug GH-16037: Assertion failure in ext/date/php_date.c
|
|
--FILE--
|
|
<?php
|
|
$di = (new DateInterval('P1Y'))->__unserialize([[]]);
|
|
echo gettype($di);
|
|
?>
|
|
--EXPECT--
|
|
NULL
|