delve/_fixtures/issue683.go
Alessandro Arzilli 1afcc6c189 Fix for #614 and #683 (#687)
* service: Prevent panics from crashing delve and killing the target

Catch all unrecovered proc and debugger panics in the service layer and
report them as errors, allow users to cleanly detach from the target
and quit.

Fixes #614

* proc: Next/Step should not panic if line info can not be found.

Fixes #683
2017-01-09 15:21:54 -08:00

8 lines
91 B
Go

package main
import "fmt"
func main() {
fmt.Println("adssd") // put a breakpoint here
}