summary refs log tree commit diff stats
path: root/tests/errmsgs/t8434.nim
diff options
context:
space:
mode:
Diffstat (limited to 'tests/errmsgs/t8434.nim')
-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 b37468111..ada38e9c0 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[T]
+  required type for a1: T1: int or float or object or array or seq[T]
   but expression 'byte(1)' is of type: byte
 
 expression: fun0(byte(1), 0)