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
This program now panics at master due to CL 228792:
package main
import "reflect"
type foo struct {}
func (foo) X() { println("ok") }
var h = reflect.Type.Method
func main() {
v := reflect.ValueOf(foo{})
m := h(v.Type(), 0)
m.Func.Call([]reflect.Value{v})
}