
Automatically sets a breakpoint on runtime.startpanic, the function that gets called by runtime.dopanic when a panic is not recovered. Implements #317
6 lines
46 B
Go
6 lines
46 B
Go
package main
|
|
|
|
func main() {
|
|
panic("BOOM!")
|
|
}
|