summary refs log tree commit diff stats
path: root/tests/errmsgs/t8339.nim
blob: 720e080c0d97cc4255f33627a260fb82c62ae6dd (plain) (blame)
1
2
3
4
5
6
7
8
discard """
  errormsg: "type mismatch: got <seq[int]> but expected 'seq[float]'"
  line: 8
"""

import sequtils

var x: seq[float] = @[1].mapIt(it)