diff options
author | Andreas Rumpf <rumpf_a@web.de> | 2020-04-19 11:59:01 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-04-19 11:59:01 +0200 |
commit | 73eff1f4579c62a083886d78980ecdc805990041 (patch) | |
tree | 5c57cc8dde0d0c49b606ad440d87dec7c9337ecb /tests/errmsgs | |
parent | 9874981e757f0e2658baa3a871450509cee9204c (diff) | |
download | Nim-73eff1f4579c62a083886d78980ecdc805990041.tar.gz |
fixes #12741 (#14005)
* fixes #12741 * updated tests
Diffstat (limited to 'tests/errmsgs')
-rw-r--r-- | tests/errmsgs/tsigmatch2.nim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/errmsgs/tsigmatch2.nim b/tests/errmsgs/tsigmatch2.nim index 580743f3e..4996634c9 100644 --- a/tests/errmsgs/tsigmatch2.nim +++ b/tests/errmsgs/tsigmatch2.nim @@ -13,6 +13,7 @@ proc foo(i: Foo): string but expression '1.2' is of type: float64 expression: foo(1.2) +tsigmatch2.nim(40, 14) Error: expression '' has no type (or is ambiguous) tsigmatch2.nim(46, 7) Error: type mismatch: got <int literal(1)> but expected one of: proc foo(args: varargs[string, myproc]) @@ -26,7 +27,6 @@ expression: foo 1 """ - # line 30 type Foo = object block: # issue #13182 |