Advertisement
Guest User

Untitled

a guest
Mar 28th, 2018
139
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.18 KB | None | 0 0
  1. proc linkerError*[T](x: seq[T], y: seq[T]) =
  2. discard
  3.  
  4. proc linkerError*[T](x: seq[T]) =
  5. linkerError[T](x, @[])
  6.  
  7. when isMainModule:
  8. let a = @[0, 1, 2]
  9. linkerError(a)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement