summary refs log tree commit diff stats
path: root/tests/accept/run/toverl2.nim
blob: 49b17da4df608bc2348ebd58eb5239a1916e7328 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
discard """
  file: "toverl2.nim"
  output: "true012"
"""
# Test new overloading resolution rules

import strutils

proc toverl2(x: int): string = return $x
proc toverl2(x: bool): string = return $x

iterator toverl2(x: int): int = 
  var res = 0
  while res < x: 
    yield res
    inc(res)
    
var
  pp: proc (x: bool): string = toverl2
stdout.write(pp(true))
for x in toverl2(3): 
  stdout.write(toverl2(x))
stdout.write("\n")
#OUT true012