github.com/jmigpin/editor@v1.6.0/core/godebug/testdata/develop.txt (about) 1 #exec go run main.go 2 #ucmd godebugtester run main.go 3 #ucmd godebugtester run -work main.go 4 5 -- main.go -- 6 package main 7 func main() { 8 defer main2(nil) 9 println(1) 10 } 11 func main2(a *int){ 12 println(2) 13 } 14