diff options
Diffstat (limited to 'tests/compiles')
-rw-r--r-- | tests/compiles/trecursive_generic_in_compiles.nim | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/tests/compiles/trecursive_generic_in_compiles.nim b/tests/compiles/trecursive_generic_in_compiles.nim index c435ebaac..88d3faeed 100644 --- a/tests/compiles/trecursive_generic_in_compiles.nim +++ b/tests/compiles/trecursive_generic_in_compiles.nim @@ -92,11 +92,3 @@ proc foldLeft*[T,U](xs: List[T], z: U, f: (U, T) -> U): U = case xs.isEmpty of true: z else: foldLeft(xs.tail, f(z, xs.head), f) - -suite "unittest compilation error": - - test "issue 3313": - let lst = lc[$x | (x <- 'a'..'z'), string].asList - - let lstCopy = lst.dup - check: lstCopy == lst |