mirror of
https://github.com/nim-lang/Nim.git
synced 2025-12-29 09:24:36 +00:00
17 lines
242 B
Nim
17 lines
242 B
Nim
discard """
|
|
cmd: "nim c --gc:arc -r $file"
|
|
nimout: '''hello
|
|
h
|
|
o
|
|
'''
|
|
"""
|
|
|
|
# Issue #13321: [codegen] --gc:arc does not properly emit cstring, results in SIGSEGV
|
|
|
|
let a = "hello".cstring
|
|
echo a
|
|
echo a[0]
|
|
echo a[4]
|
|
doAssert a[a.len] == '\0'
|
|
|