Files
Nim/tests/overload/toverwr.nim
2014-01-13 02:10:03 +01:00

14 lines
221 B
Nim

discard """
file: "toverwr.nim"
output: "hello"
"""
# Test the overloading resolution in connection with a qualifier
proc write(t: TFile, s: string) =
nil # a nop
system.write(stdout, "hello")
#OUT hello