diff options
Diffstat (limited to 'tests/method/tmultim6.nim')
-rw-r--r-- | tests/method/tmultim6.nim | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/method/tmultim6.nim b/tests/method/tmultim6.nim index 5f45f572a..6c21f80d2 100644 --- a/tests/method/tmultim6.nim +++ b/tests/method/tmultim6.nim @@ -9,10 +9,10 @@ type 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 | " |