1
0
mirror of https://github.com/php/php-src.git synced 2026-04-26 09:28:21 +02:00
Files
archived-php-src/ext/intl/tests/bug78804.phpt
T
2021-07-06 10:55:43 +02:00

16 lines
233 B
PHP

--TEST--
Bug #78804: Segmentation fault in Locale::filterMatches
--EXTENSIONS--
intl
--FILE--
<?php
if (Locale::filterMatches('en-US', 'und', true)) {
echo 'Matches';
} else {
echo 'Not matches';
}
?>
--EXPECT--
Not matches