1--TEST--
2Bug #60192 (SegFault when Collator not constructed properly)
3--SKIPIF--
4<?php
5    if (!extension_loaded('intl')) { die('skip intl extension not available'); }
6?>
7--FILE--
8<?php
9
10class Collator2 extends Collator{
11    public function __construct() {
12        // omitting parent::__construct($someLocale);
13    }
14}
15
16$c = new Collator2();
17$a = array('a', 'b');
18$c->sortWithSortKeys($a);
19?>
20--EXPECTF--
21Fatal error: Uncaught Error: Object not initialized in %s:%d
22Stack trace:
23#0 %s(%d): Collator->sortWithSortKeys(Array)
24#1 {main}
25  thrown in %s on line %d
26