summary refs log tree commit diff stats
path: root/tests/method/tmultim6.nim
blob: 2c622b832726d817f26db6275b3201e54019d582 (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
28
29
30
discard """
  output: "collide: unit, thing | collide: unit, thing | collide: thing, unit |"
"""
# Test multi methods

type
  Thing = object {.inheritable.}
  Unit[T] = object of Thing
    x: T
  Particle = object of Thing
    a, b: int

method collide(a, b: Thing) {.base, inline.} =
  quit "to override!"

method collide[T](a: Thing, b: Unit[T]) {.inline.} =
  write stdout, "collide: thing, unit | "

method collide[T](a: Unit[T], b: Thing) {.inline.} =
  write stdout, "collide: unit, thing | "

proc test(a, b: Thing) {.inline.} =
  collide(a, b)

var
  a: Thing
  b, c: Unit[string]
collide(b, Thing(c))
test(b, c)
collide(a, b)