diff options
author | Zahary Karadjov <zahary@gmail.com> | 2018-04-20 11:44:13 +0300 |
---|---|---|
committer | Zahary Karadjov <zahary@gmail.com> | 2018-06-16 16:46:32 +0300 |
commit | fb27357b6217f53dc882e83fc128da578ad51764 (patch) | |
tree | 9922a3180ce7ce445500925aedb38ba932cfcc62 /tests/lexer/tmissingnl.nim | |
parent | 8633b1b3097e1627f16a52fc648f0e14c647a688 (diff) | |
download | Nim-fb27357b6217f53dc882e83fc128da578ad51764.tar.gz |
A minimal patch enabling the new typedesc and static types syntax
Diffstat (limited to 'tests/lexer/tmissingnl.nim')
-rw-r--r-- | tests/lexer/tmissingnl.nim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/lexer/tmissingnl.nim b/tests/lexer/tmissingnl.nim index 33b7debf1..095d9570e 100644 --- a/tests/lexer/tmissingnl.nim +++ b/tests/lexer/tmissingnl.nim @@ -4,7 +4,7 @@ discard """ errormsg: "invalid indentation" """ -import strutils var s: seq[int] = @[0, 1, 2, 3, 4, 5, 6] +import strutils let s: seq[int] = @[0, 1, 2, 3, 4, 5, 6] #s[1..3] = @[] |