mirror of
https://github.com/nim-lang/Nim.git
synced 2025-12-30 18:02:05 +00:00
14 lines
218 B
Nim
14 lines
218 B
Nim
discard """
|
|
file: "toverwr.nim"
|
|
output: "hello"
|
|
"""
|
|
# Test the overloading resolution in connection with a qualifier
|
|
|
|
proc write(t: TFile, s: string) =
|
|
discard # a nop
|
|
|
|
system.write(stdout, "hello")
|
|
#OUT hello
|
|
|
|
|