summary refs log blame commit diff stats
path: root/tests/ambsym/tambsym2.nim
blob: 745427c54669d277c8596ec18e43df2e0b9cb4c6 (plain) (tree)
1
2
3
4



                      

















                                                   

 
discard """
  file: "tambsym2.nim"
  output: "7"
"""
# Test overloading of procs with locals

type
  TMyType = object
    len: int
    data: string
    
proc len(x: TMyType): int {.inline.} = return x.len

proc x(s: TMyType, len: int) = 
  writeln(stdout, len(s))
  
var
  m: TMyType
m.len = 7
m.data = "1234"

x(m, 5) #OUT 7