summary refs log tree commit diff stats
path: root/tests/errmsgs
diff options
context:
space:
mode:
authorAndreas Rumpf <rumpf_a@web.de>2019-02-25 19:00:52 +0100
committerAndreas Rumpf <rumpf_a@web.de>2019-02-25 19:01:01 +0100
commit84f0a33bf0b0dc040c97205914d0b03c16e7c71a (patch)
treea2102f2b1db5ced82e1ec908d86ae94e9202357c /tests/errmsgs
parentfb863a147a79ab36306f884921b6693141a12870 (diff)
downloadNim-84f0a33bf0b0dc040c97205914d0b03c16e7c71a.tar.gz
make typeToString sane for sequence again
Diffstat (limited to 'tests/errmsgs')
-rw-r--r--tests/errmsgs/t8434.nim2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/errmsgs/t8434.nim b/tests/errmsgs/t8434.nim
index 60fe2e2df..b37468111 100644
--- a/tests/errmsgs/t8434.nim
+++ b/tests/errmsgs/t8434.nim
@@ -4,7 +4,7 @@ discard """
 proc fun0[T1: int | float |
     object | array | seq](a1: T1; a2: int)
   first type mismatch at position: 1
-  required type: T1: int or float or object or array or seq
+  required type: T1: int or float or object or array or seq[T]
   but expression 'byte(1)' is of type: byte
 
 expression: fun0(byte(1), 0)