mirror of
https://github.com/nim-lang/Nim.git
synced 2025-12-30 01:44:37 +00:00
11 lines
185 B
Nim
11 lines
185 B
Nim
|
|
type R* = object
|
|
|
|
type Data*[T] = object
|
|
d*: T
|
|
|
|
proc same(r:R, d:int) = echo "TEST2"
|
|
|
|
proc doIt*(d:Data, r:R) =
|
|
r.same(1) # Expecting this to invoke the local `same()` method
|