
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
13 lines
108 B
Go
13 lines
108 B
Go
package main
|
|
|
|
import "fmt"
|
|
|
|
func main() {
|
|
i := getNum()
|
|
fmt.Println(i)
|
|
}
|
|
|
|
func getNum() int {
|
|
return 0
|
|
}
|