mirror of
https://github.com/php/php-src.git
synced 2026-04-20 22:41:20 +02:00
13 lines
214 B
PHP
13 lines
214 B
PHP
--TEST--
|
|
Bug #75193 segfault in collator_convert_object_to_string
|
|
--EXTENSIONS--
|
|
intl
|
|
--FILE--
|
|
<?php
|
|
$a = new \Collator('en_US');
|
|
$b = [new stdclass, new stdclass];
|
|
var_dump($a->sort($b));
|
|
?>
|
|
--EXPECT--
|
|
bool(true)
|