mirror of
https://github.com/nim-lang/Nim.git
synced 2025-12-28 17:04:41 +00:00
12 lines
150 B
Nim
12 lines
150 B
Nim
discard """
|
|
output: '''true'''
|
|
"""
|
|
|
|
# bug #4471
|
|
when true:
|
|
let s1 = "123"
|
|
var s2 = s1
|
|
s2.setLen(0)
|
|
# fails - s1.len == 0
|
|
echo s1.len == 3
|