You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Gobra crashes with an exception when verifying this example:
type Person struct {
Age [1]byte
}
func test() {
joao := &Person{
Age: [1]uint8{50},
}
}
It appears that the verifier fails to handle the mismatch between uint8 and byte, despite these being equivalent types in Go. When changing uint8 to byte, the example successfully verifies.
The text was updated successfully, but these errors were encountered:
Gobra crashes with an exception when verifying this example:
It appears that the verifier fails to handle the mismatch between
uint8
andbyte
, despite these being equivalent types in Go. When changinguint8
tobyte
, the example successfully verifies.The text was updated successfully, but these errors were encountered: