diff options
author | Zahary Karadjov <zahary@gmail.com> | 2017-06-11 01:05:14 +0300 |
---|---|---|
committer | Andreas Rumpf <rumpf_a@web.de> | 2017-06-20 11:29:42 +0200 |
commit | 24966e006a56e25fc1cb5c03d1d8ac12dc69d557 (patch) | |
tree | 472fd81528b9fa5447eabf005779327998237ffb /tests/overload | |
parent | 36c4f0a89c675ee7c03a265287bde03166b2686b (diff) | |
download | Nim-24966e006a56e25fc1cb5c03d1d8ac12dc69d557.tar.gz |
fix #1082
Diffstat (limited to 'tests/overload')
-rw-r--r-- | tests/overload/tstaticoverload.nim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/overload/tstaticoverload.nim b/tests/overload/tstaticoverload.nim index 965ff054f..33ca49e56 100644 --- a/tests/overload/tstaticoverload.nim +++ b/tests/overload/tstaticoverload.nim @@ -16,7 +16,7 @@ proc foo(s: static[string]) = echo "static: ", s let l = "let" -let v = "var" +var v = "var" const c = "const" type staticString = static[string] |