Reproducer program,
package main
import "fmt"
type Empty interface {
}
func main() {
var intf interface{} = new(int)
typed := intf.(Empty)
fmt.Println(typed)
}
crashes on my stm32f469disco target with:
panic: runtime error: type assert failed
Issue found while running (more) Gio code.
Reproducer program,
crashes on my
stm32f469discotarget with:panic: runtime error: type assert failedIssue found while running (more) Gio code.