diff options
author | Araq <rumpf_a@web.de> | 2018-11-16 19:54:49 +0100 |
---|---|---|
committer | Araq <rumpf_a@web.de> | 2018-11-16 19:54:49 +0100 |
commit | 6279b0587a9551d8c205e682d28a731f2986c456 (patch) | |
tree | 436169010f96ee20521b1bf64fc2cf4215674976 /tests/exprs | |
parent | 3f6168b3372013c0d4b938e6a83849199d9756c9 (diff) | |
download | Nim-6279b0587a9551d8c205e682d28a731f2986c456.tar.gz |
make tests green again
Diffstat (limited to 'tests/exprs')
-rw-r--r-- | tests/exprs/tifexpr_typeinference.nim | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/exprs/tifexpr_typeinference.nim b/tests/exprs/tifexpr_typeinference.nim index 3ae95c571..d02492a34 100644 --- a/tests/exprs/tifexpr_typeinference.nim +++ b/tests/exprs/tifexpr_typeinference.nim @@ -2,10 +2,10 @@ import tables -proc test(): TTable[string, string] = +proc test(): Table[string, string] = discard -proc test2(): TTable[string, string] = +proc test2(): Table[string, string] = discard var x = 5 |