Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- proc linkerError*[T](x: seq[T], y: seq[T]) =
- discard
- proc linkerError*[T](x: seq[T]) =
- linkerError[T](x, @[])
- when isMainModule:
- let a = @[0, 1, 2]
- linkerError(a)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement