1
0
mirror of https://github.com/php/php-src.git synced 2026-03-25 16:52:18 +01:00
Files
archived-php-src/Zend/tests/bug69893.phpt
Nikita Popov e8217a2727 Fix bug #69891
2015-06-20 17:23:58 +02:00

9 lines
160 B
PHP

--TEST--
Bug #69893: Strict comparison between integer and empty string keys crashes
--FILE--
<?php
var_dump([0 => 0] === ["" => 0]);
?>
--EXPECT--
bool(false)