Open mvertes opened 2 days ago
The following valid Go code fails in gno:
package main import "fmt" type node struct { parent *node child []*node key string } func main() { root := &node{key: "root"} root.child = nil fmt.Println("root:", root) } // Output: // root: &{<nil> [] root}
related: https://github.com/gnolang/gno/issues/2850
The following valid Go code fails in gno: