mirror of
https://github.com/nim-lang/Nim.git
synced 2025-12-30 01:44:37 +00:00
14 lines
232 B
Nim
14 lines
232 B
Nim
discard """
|
|
file: "toverl.nim"
|
|
line: 11
|
|
errormsg: "redefinition of \'TNone\'"
|
|
"""
|
|
# Test for overloading
|
|
|
|
type
|
|
TNone {.exportc: "_NONE", final.} = object
|
|
|
|
proc TNone(a, b: int) = nil #ERROR_MSG attempt to redefine 'TNone'
|
|
|
|
|