godebugtester run dir0/main.go
contains stdout "3=(a[1]) = 3"

-- go.mod --
module mod1
-- dir0/main.go --
package main
func main(){
	a:=[]int{1,2}
	a[1]=3
}

