Last active
March 28, 2018 18:08
-
-
Save Vindaar/ea1ad0abb7134255bb8122f19b2d6b87 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
proc compilerError*[T](x: seq[T], y = @[]) = | |
discard | |
proc linkerError*[T](x: seq[T], y: seq[T] = @[]) = | |
discard | |
when isMainModule: | |
let a = @[0, 1, 2] | |
#compilerError(a) | |
linkerError(a) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment