delve/_fixtures/issue1374.go
aarzilli f72c48c034 proc: Continue should always work after CallFunction
Continue did not resume execution after a call to CallFunction if the
point where the process was stopped, before the call CallFunction, was
a breakpoint.

Fixes #1374
2018-10-17 09:07:36 -07:00

13 lines
108 B
Go

package main
import "fmt"
func main() {
i := getNum()
fmt.Println(i)
}
func getNum() int {
return 0
}