Files
Nim/tests/js/tstring_assignment.nim
Andreas Rumpf d7cc9016f3 fixes #4470
2018-04-13 23:41:31 +02:00

22 lines
347 B
Nim

discard """
output: '''true
asdfasekjkler'''
"""
# bug #4471
when true:
let s1 = "123"
var s2 = s1
s2.setLen(0)
# fails - s1.len == 0
echo s1.len == 3
# bug #4470
proc main(s: cstring): string =
result = newString(0)
for i in 0..<s.len:
if s[i] >= 'a' and s[i] <= 'z':
result.add s[i]
echo main("asdfasekjkleräöü")