ltzmaxwell

Results 91 comments of ltzmaxwell

loop var escape issues is being fixed in #2429 and #2440 , we can put a hold on reviewing this PR and decide our next steps based on the status...

> There is conflict need to be resolved with #1426 first. a,b = x(...) assignment check is not in the preprocess anymore. Hi @piux2 , part of the logic for...

> @thehowl @ltzmaxwell > > Are there any specific behavioral patterns in Gno that would be introduced by this PR? If yes, let me know, so I can document them...

should share some logic with this: https://github.com/gnolang/gno/issues/1946

start looking, this seems to be a missing case: ```go package main import "fmt" type MyStruct struct { Mp *int } func makeT() MyStruct { x := 10 return MyStruct{Mp:...

another one out of scope too: 😆 ```go package main type MyInt int func main() { _ = &MyInt _ = MyInt } ```