xref: /PHP-7.4/Zend/tests/bug69532.phpt (revision 75b4fa07)
1--TEST--
2Bug #69532: array_multisort is chocking when using it's own constants
3--FILE--
4<?php
5
6namespace Foo;
7
8$origins = array();
9$profiles = array();
10$all_files = array();
11
12array_multisort($origins, SORT_ASC, $profiles, SORT_ASC, $all_files);
13
14?>
15===DONE===
16--EXPECT--
17===DONE===
18