diff options
Diffstat (limited to 'tests/method/tmultim2.nim')
-rw-r--r-- | tests/method/tmultim2.nim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/method/tmultim2.nim b/tests/method/tmultim2.nim index e695dd19b..98a08b1cb 100644 --- a/tests/method/tmultim2.nim +++ b/tests/method/tmultim2.nim @@ -14,7 +14,7 @@ type TParticle = object of TThing a, b: int -method collide(a, b: TThing) {.inline.} = +method collide(a, b: TThing) {.base, inline.} = echo "collide: thing, thing" method collide(a: TThing, b: TUnit) {.inline.} = |