summaryrefslogtreecommitdiff
path: root/ext/intl/tests/bug60192-compare.phpt
blob: 096b57558f137a76fdf96b69746c25243c8a3f41 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
--TEST--
Bug #60192 (SegFault when Collator not constructed properly)
--SKIPIF--
<?php
	if (!extension_loaded('intl')) { die('skip intl extension not available'); }
?>
--FILE--
<?php
class Collator2 extends Collator{
	public function __construct() {
		// omitting parent::__construct($someLocale);
	}
}

$c = new Collator2();
$a = $c->compare('h', 'H');
--EXPECTF--
Fatal error: Uncaught Error: Object not initialized in %s:%d
Stack trace:
#0 %s(%d): Collator->compare('h', 'H')
#1 {main}
  thrown in %s on line %d