We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
see this:
package main func main() { var s = make([][2]string, 1) // Slice with length 1 s[0] = [2]string{"a", "b"} // Assign value to s[0] const r = len(s[0]) println(r) // Prints: 2 }
it should output 2, in Go, but got panic: nil slice index (out of bounds) in Gno.
2
panic: nil slice index (out of bounds)
The text was updated successfully, but these errors were encountered:
This PR #3600 should also resolve this issue.
Sorry, something went wrong.
petar-dambovaliev
No branches or pull requests
Description
see this:
it should output
2
, in Go, but gotpanic: nil slice index (out of bounds)
in Gno.The text was updated successfully, but these errors were encountered: