php-src/Zend/tests/bug69532.phpt
Nikita Popov 75b4fa079f Fix bug #69532
Partial revert of ea2fc7f935.
2015-04-25 18:47:26 +02:00

18 lines
282 B
PHP

--TEST--
Bug #69532: array_multisort is chocking when using it's own constants
--FILE--
<?php
namespace Foo;
$origins = array();
$profiles = array();
$all_files = array();
array_multisort($origins, SORT_ASC, $profiles, SORT_ASC, $all_files);
?>
===DONE===
--EXPECT--
===DONE===