xref: /PHP-5.5/ext/pcre/tests/bug67238.phpt (revision c62f32c3)
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--EXPECTF--
101
11