summary refs log tree commit diff stats
path: root/tests/stdlib/tbug5382.nim
diff options
context:
space:
mode:
Diffstat (limited to 'tests/stdlib/tbug5382.nim')
-rw-r--r--tests/stdlib/tbug5382.nim11
1 files changed, 0 insertions, 11 deletions
diff --git a/tests/stdlib/tbug5382.nim b/tests/stdlib/tbug5382.nim
deleted file mode 100644
index c86656d32..000000000
--- a/tests/stdlib/tbug5382.nim
+++ /dev/null
@@ -1,11 +0,0 @@
-discard """
-  output: '''
-02
-'''
-"""
-import re
-
-let regexp = re"^\/([0-9]{2})\.html$"
-var matches: array[1, string]
-discard "/02.html".find(regexp, matches)
-echo matches[0]