diff options
author | Andreas Rumpf <rumpf_a@web.de> | 2018-07-05 15:51:04 +0200 |
---|---|---|
committer | Andreas Rumpf <rumpf_a@web.de> | 2018-07-05 15:51:04 +0200 |
commit | 0926754e68861947c67986bc9c7e0a011a58267b (patch) | |
tree | bc11469a33f1aabd202e7105177553688439712a /tests/errmsgs | |
parent | 9b31f6785947974e89d46bbc0dee11f1c78754dc (diff) | |
download | Nim-0926754e68861947c67986bc9c7e0a011a58267b.tar.gz |
make tests green again
Diffstat (limited to 'tests/errmsgs')
-rw-r--r-- | tests/errmsgs/t1154.nim | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/errmsgs/t1154.nim b/tests/errmsgs/t1154.nim index 7fcbf8a27..fee9d0ad6 100644 --- a/tests/errmsgs/t1154.nim +++ b/tests/errmsgs/t1154.nim @@ -1,11 +1,11 @@ discard """ -errormsg: "invalid type: 'expr' in this context: 'proc (a: varargs[expr])' for proc" +errormsg: "invalid type: 'untyped' in this context: 'proc (a: varargs[untyped])' for proc" line: 8 """ import typetraits -proc foo(a:varargs[expr]) = +proc foo(a:varargs[untyped]) = echo a[0].type.name foo(1) |