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
1. What is a short input program that triggers the error?
package main
func getArgs(data map[string]interface{}, keys ...string) {
ret := map[string]string{}
var ok bool
for _, k := range keys {
ret[k], ok = data[k].(string)
if !ok {}
}
}
2. What is the full compiler output?
6g -o _go_.6 coord.go
typecheck [d56fa0]
. INDREG a(1) l(7) x(24) tc(2) runtime.ret G0 string
coord.go:7: internal compiler error: typecheck INDREG
3. What version of the compiler are you using? (Run it with the -V flag.)
[bpowers@vyse go]$ 6g -V
6g version weekly.2011-05-22 8483
(also occurs on r57.1)
The text was updated successfully, but these errors were encountered:
The text was updated successfully, but these errors were encountered: