mirror of
https://github.com/nim-lang/Nim.git
synced 2026-01-01 19:02:18 +00:00
7 lines
125 B
Nim
7 lines
125 B
Nim
discard """
|
|
errormsg: "'type' is a keyword and cannot be used as a parameter name"
|
|
"""
|
|
|
|
proc myproc(type: int) =
|
|
echo type
|