diff options
author | cooldome <cdome@bk.ru> | 2020-06-01 18:56:17 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-06-01 19:56:17 +0200 |
commit | e5b64af8317eb0f5e8b9912691b69aab4cd26adf (patch) | |
tree | c6579db452de8a25509d623a1e5702d4b1809e7a /tests/errmsgs | |
parent | 3cf88c2b4955f330e147c98064969626719790de (diff) | |
download | Nim-e5b64af8317eb0f5e8b9912691b69aab4cd26adf.tar.gz |
Implement rendering of `[]=`, `{}`, `{}=` braces (#14539)
* render curly braces * fix typo * fix test Co-authored-by: cooldome <ariabushenko@bk.ru>
Diffstat (limited to 'tests/errmsgs')
-rw-r--r-- | tests/errmsgs/twrongcolon.nim | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/errmsgs/twrongcolon.nim b/tests/errmsgs/twrongcolon.nim index 6f5cc3e5d..e59e37660 100644 --- a/tests/errmsgs/twrongcolon.nim +++ b/tests/errmsgs/twrongcolon.nim @@ -1,8 +1,8 @@ discard """ -errormsg: "in expression '(" +errormsg: "in expression ':" nimout: ''' -Error: in expression '( - 890)': identifier expected, but found '' +Error: in expression ': + 890': identifier expected, but found '' ''' line: 11 |