xref: /PHP-7.4/ext/pcre/tests/bug67238.phpt (revision ded3d984)
1--TEST--
2Bug #67238 Ungreedy and min/max quantifier bug in PCRE 8.34 upstream
3--FILE--
4<?php
5
6echo preg_match('/a{1,3}b/U', 'ab');
7
8?>
9--EXPECT--
101
11