mirror of
https://github.com/nim-lang/Nim.git
synced 2026-01-07 21:43:33 +00:00
25 lines
323 B
Nim
25 lines
323 B
Nim
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) =
|
|
writeLine(stdout, len(s))
|
|
|
|
var
|
|
m: TMyType
|
|
m.len = 7
|
|
m.data = "1234"
|
|
|
|
x(m, 5) #OUT 7
|
|
|
|
|