r3 icon indicating copy to clipboard operation
r3 copied to clipboard

CRASH: when making a struct with another struct field and initial value is missing

Open Oldes opened this issue 2 years ago • 0 comments

this is ok:

y: make struct! [ c [struct! [a [uint8!]]] ]

this is also ok:

x: make struct! [ a [uint8!] ]
y: make struct! [ c: [struct! [a [uint8!]]] x ]

but this is not:

y: make struct! [ c: [struct! [a [uint8!]]] ] ;<--- CRASH (as there is expected the value)

Oldes avatar Jul 29 '21 10:07 Oldes