xref: /PHP-7.4/Zend/tests/bug69893.phpt (revision e8217a27)
1--TEST--
2Bug #69893: Strict comparison between integer and empty string keys crashes
3--FILE--
4<?php
5var_dump([0 => 0] === ["" => 0]);
6?>
7--EXPECT--
8bool(false)
9