summary refs log blame commit diff stats
path: root/tests/method/tmultim6.nim
blob: 2c622b832726d817f26db6275b3201e54019d582 (plain) (tree)
1
2
3
4
5
6
7
8
9
           
                                                                                



                    

                                
        
                            
             
 
                                              
                     
 
                                                    

                                         
                                                    

                                         
                                   


               


                    

             
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)