diff options
Diffstat (limited to 'tests')
-rw-r--r-- | tests/run/tmultim6.nim | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/tests/run/tmultim6.nim b/tests/run/tmultim6.nim new file mode 100644 index 000000000..a55b69e37 --- /dev/null +++ b/tests/run/tmultim6.nim @@ -0,0 +1,30 @@ +discard """ + output: "collide: unit, thing | collide: unit, thing | collide: thing, unit" +""" +# Test multi methods + +type + TThing = object {.inheritable.} + TUnit[T] = object of TThing + x: T + TParticle = object of TThing + a, b: int + +method collide(a, b: TThing) {.inline.} = + quit "to override!" + +method collide[T](a: TThing, b: TUnit[T]) {.inline.} = + write stdout, "collide: thing, unit | " + +method collide[T](a: TUnit[T], b: TThing) {.inline.} = + write stdout, "collide: unit, thing | " + +proc test(a, b: TThing) {.inline.} = + collide(a, b) + +var + a: TThing + b, c: TUnit[string] +collide(b, TThing(c)) +test(b, c) +collide(a, b) |