This commit is contained in:
hlaaftana
2020-04-26 11:12:16 +03:00
committed by GitHub
parent 31ba27590c
commit 76ffa4fa25
6 changed files with 27 additions and 1 deletions

5
tests/js/t11697.nim Normal file
View File

@@ -0,0 +1,5 @@
import tables
var xs: Table[int, Table[int, int]]
doAssertRaises(KeyError): reset xs[0]

8
tests/js/temptyseq.nim Normal file
View File

@@ -0,0 +1,8 @@
# #12671
proc foo =
var x: seq[int]
doAssertRaises(IndexError):
inc x[0]
foo()