xref: /PHP-7.4/ext/pcre/tests/bug80118.phpt (revision d27dc5c0)
1--TEST--
2Bug #80118 (Erroneous whitespace match with JIT only)
3--FILE--
4<?php
5preg_match('~[^\p{Han}\p{Z}]~u', '     ', $matches);
6var_dump($matches);
7?>
8--EXPECT--
9array(0) {
10}
11