migrate ext_icu_collator to use inout parameters instead of references
[hiphop-php.git] / hphp / test / zend / good / ext / intl / tests / bug60192-sortwithsortkeys.php
blobb99058a25c8fb24787a5df8ac221070dc74eb363
1 <?hh
3 class Collator2 extends Collator{
4 public function __construct() {
5 // ommitting parent::__construct($someLocale);
8 <<__EntryPoint>> function main(): void {
9 $c = new Collator2();
10 $a = array('a', 'b');
11 $c->sortWithSortKeys(inout $a);