xref: /PHP-7.3/ext/intl/tests/bug78804.phpt (revision 2c9926f1)
1--TEST--
2Bug #78804: Segmentation fault in Locale::filterMatches
3--FILE--
4<?php
5
6if (Locale::filterMatches('en-US', 'und', true)) {
7    echo 'Matches';
8} else {
9    echo 'Not matches';
10}
11?>
12--EXPECT--
13Not matches