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