https://issues.dlang.org/show_bug.cgi?id=16251
Issue ID: 16251
Summary: regex - `(..).*\1` doesn't match "axxxx"
Product: D
Version: D2
Hardware: All
OS: All
Status: NEW
Severity: normal
Priority: P3
Component: phobos
Assignee: [email protected]
Reporter: [email protected]
////////////////// test.d /////////////////
import std.regex;
void main()
{
assert("axxxx".matchFirst(`(..).*\1`));
}
///////////////////////////////////////////
--
