1# Issue 33871. 2 3cd m/a.0 4go build 5 6-- m/go.mod -- 7module m 8-- m/a.0/a.go -- 9package a 10 11type T int 12 13func (t T) M() int { 14 return int(t) 15}
View as plain text