diff options
Diffstat (limited to 'tests/let/tlet2.nim')
-rw-r--r-- | tests/let/tlet2.nim | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/tests/let/tlet2.nim b/tests/let/tlet2.nim index 66dd5a55b..63e7d6128 100644 --- a/tests/let/tlet2.nim +++ b/tests/let/tlet2.nim @@ -1,6 +1,6 @@ discard """ + errormsg: "type mismatch: got <int literal(8), int literal(5), int, int>" line: "13" - errormsg: "type mismatch: got (int literal(8), int literal(5), int, int)" """ proc divmod(a, b: int, res, remainder: var int) = @@ -13,4 +13,3 @@ let divmod(8, 5, x, y) # modifies x and y echo(x) echo(y) - |