summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/regex_impl.cc5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/regex_impl.cc b/src/regex_impl.cc
index 2a992df9..729519a8 100644
--- a/src/regex_impl.cc
+++ b/src/regex_impl.cc
@@ -1389,6 +1389,11 @@ auto test_regex = UnitTest{[]{
}
{
+ TestVM<> vm{R"((?i)[a-c]+)"};
+ kak_assert(vm.exec("bCa"));
+ }
+
+ {
TestVM<> vm{R"(д)"};
kak_assert(vm.exec("д", RegexExecFlags::Search));
}