summaryrefslogtreecommitdiff
path: root/Zend/tests/bug69892.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'Zend/tests/bug69892.phpt')
-rw-r--r--Zend/tests/bug69892.phpt10
1 files changed, 10 insertions, 0 deletions
diff --git a/Zend/tests/bug69892.phpt b/Zend/tests/bug69892.phpt
new file mode 100644
index 0000000000..d14f85fa52
--- /dev/null
+++ b/Zend/tests/bug69892.phpt
@@ -0,0 +1,10 @@
+--TEST--
+Bug #69892: Different arrays compare indentical due to integer key truncation
+--SKIPIF--
+<?php if (PHP_INT_SIZE != 8) die("skip this test is for 64bit platforms only"); ?>
+--FILE--
+<?php
+var_dump([0 => 0] === [0x100000000 => 0]);
+?>
+--EXPECT--
+bool(false)