mirror of
https://github.com/nim-lang/Nim.git
synced 2025-12-31 10:22:15 +00:00
6
tests/generics/t5707.nim
Normal file
6
tests/generics/t5707.nim
Normal file
@@ -0,0 +1,6 @@
|
||||
import sugar
|
||||
|
||||
proc foo[T]: seq[int] =
|
||||
return lc[x | (x <- 1..10, x mod 2 == 0), int]
|
||||
|
||||
doAssert foo[float32]() == @[2, 4, 6, 8, 10]
|
||||
Reference in New Issue
Block a user