Your comments

It does not happen on a simple "Hello World" file, but something in this snippet triggers the crash:


package main

import (
    "fmt"
)
func main() {
    m = make(map[string]int64)
    for k, v := range m {
        fmt.Printf("%s,%d,", k, v)
    }
}


If I remove the tmbundle it loads without issue.