summary refs log tree commit diff stats
path: root/tests/accept/run/toverwr.nim
blob: 6705c6b3f0a25f8afb93dfd4b8d0da59539dcbd5 (plain) (blame)
1
2
3
4
5
6
7
# Test the overloading resolution in connection with a qualifier

proc write(t: TFile, s: string) =
  nil # a nop

system.write(stdout, "hello")
#OUT hello