summaryrefslogtreecommitdiff
path: root/Zend/tests/bug69532.phpt
blob: 69af53c8fecc013abbb372a0f3591c405c22af4f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
--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===