Skip to content

Commit

Permalink
add missing unittest for issue 7300
Browse files Browse the repository at this point in the history
  • Loading branch information
DmitryOlshansky committed Mar 23, 2012
1 parent e53e6d6 commit abe9cb5
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion std/regex.d
Expand Up @@ -7518,7 +7518,11 @@ else
}
unittest
{//bugzilla 7111
assert(!match("", regex("^")).empty);
assert(match("", regex("^")));
}
unittest
{//bugzilla 7300
assert(!match("a"d, "aa"d));
}

unittest
Expand Down

0 comments on commit abe9cb5

Please sign in to comment.