1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00
This commit is contained in:
penguindark
2021-09-06 02:11:38 +02:00
committed by GitHub
parent e5c4c408b5
commit 438bdd1b0b
2 changed files with 17 additions and 0 deletions

View File

@ -155,6 +155,10 @@ match_test_suite = [
// particular groups
TestItem{"ababababac", r"ab(.*)(ac)",0,10},
// backslash on finish string
TestItem{"a", r"\S+",0,1},
TestItem{"aaaa", r"\S+",0,4},
TestItem{"aaaa ", r"\S+",0,4},
]
)