The following works:
var a = "Hola"
var b = new string
b[] = a
echo b[]
But the following:
type
B = ref object
text:ref string = new string
var a = "Hola"
var b = new B
b.text[] = a
fails with:
nim-2.0.14/lib/system.nim(846, 8) Error: string literal must be of some string type
Is this a bug or is there anything I can do to fix it?
This seems to work:
type
B = ref object
text:ref string #= new string
proc newStringRef(s = ""): ref string =
new(result)
result[] = s
var a = newStringRef("Hola")
var b = new B
b.text = a
echo b.text[]