diff options
Diffstat (limited to 'tests/accept/run/tmultim2.nim')
-rwxr-xr-x | tests/accept/run/tmultim2.nim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/accept/run/tmultim2.nim b/tests/accept/run/tmultim2.nim index bf3b5fd6e..c43c9b6f0 100755 --- a/tests/accept/run/tmultim2.nim +++ b/tests/accept/run/tmultim2.nim @@ -22,7 +22,7 @@ proc test(a, b: TThing) {.inline.} = var a: TThing b, c: TUnit -collide(b, c) # ambiguous unit, thing or thing, unit? -> prefer unit, thing! +collide(b, c) # ambiguous (unit, thing) or (thing, unit)? -> prefer unit, thing! test(b, c) collide(a, b) #OUT collide: unit, thing collide: unit, thing collide: thing, unit |