summaryrefslogtreecommitdiff
path: root/Zend/tests/bug69893.phpt
blob: 7dc8d82eb3105a392dcb890d50f8083e8510629e (plain)
1
2
3
4
5
6
7
8
--TEST--
Bug #69893: Strict comparison between integer and empty string keys crashes
--FILE--
<?php
var_dump([0 => 0] === ["" => 0]);
?>
--EXPECT--
bool(false)