xref: /PHP-7.4/ext/pcre/tests/bug74873.phpt (revision d679f022)
1--TEST--
2Bug #74873 (Minor BC break: PCRE_JIT changes output of preg_match())
3--FILE--
4<?php
5var_dump(preg_match('/\S+/', 'foo bar', $matches, 0, 99999));
6?>
7--EXPECT--
8bool(false)
9