diff options
author | Araq <rumpf_a@web.de> | 2018-02-10 20:39:05 +0100 |
---|---|---|
committer | Araq <rumpf_a@web.de> | 2018-02-10 20:55:21 +0100 |
commit | ef6eda4cb4b28a6c4a2706ea56240bc708e36349 (patch) | |
tree | 9f7596b6a4127d40a146d56bfb25a1f345e2fd8e /tests/errmsgs/tshow_asgn.nim | |
parent | 51d81c4e23c7f5513a1b2028f02509c860021278 (diff) | |
download | Nim-ef6eda4cb4b28a6c4a2706ea56240bc708e36349.tar.gz |
better error messages: use <T1, T2> instead of (T1, T2) in order to prevent confusions with tuple types
Diffstat (limited to 'tests/errmsgs/tshow_asgn.nim')
-rw-r--r-- | tests/errmsgs/tshow_asgn.nim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/errmsgs/tshow_asgn.nim b/tests/errmsgs/tshow_asgn.nim index 250f786e2..1627c9b71 100644 --- a/tests/errmsgs/tshow_asgn.nim +++ b/tests/errmsgs/tshow_asgn.nim @@ -1,5 +1,5 @@ discard """ - errormsg: "type mismatch: got (int) but expected 'cshort = int16'" + errormsg: "type mismatch: got <int> but expected 'cshort = int16'" line: 12 column: 10 file: "tshow_asgn.nim" |