delve/_fixtures/teststep.go
Derek Parker 1bda586115 proc: step now goes to next line, including funcs
This patch modifies the `step` command to step to the next source line,
stepping into any function encountered along the way.

Fixes #360
2016-01-24 15:48:36 -08:00

16 lines
130 B
Go

package main
import (
"fmt"
"runtime"
)
func callme() {
fmt.Println("hi")
}
func main() {
runtime.Breakpoint()
callme()
}