Files
Nim/tests/ccgbugs/tassign_nil_strings.nim
Timothee Cour 6c5872c169 --nilseqs is now a deprecated noop (#17211)
* --nilseqs is now a deprecated noop

* fix tests; fix: future => sugar
2021-03-01 20:59:43 +01:00

14 lines
204 B
Nim

discard """
cmd: "nim $target $options $file"
output: "Hello"
ccodecheck: "\\i@'a = ((NimStringDesc*) NIM_NIL)'"
"""
proc main() =
var a = "Hello"
echo a
a = ""
doAssert a.len == 0
main()