Files
Nim/tests/arc/t19862.nim
2024-12-13 15:04:49 +01:00

16 lines
268 B
Nim

discard """
matrix: "--gc:refc; --gc:arc"
"""
import std/widestrs
# bug #19862
type NewString = object
proc len(s: NewString): int = 10
converter toNewString(x: WideCStringObj): NewString = default(NewString)
let w = newWideCString("test")
doAssert len(w) == 4