delve/_fixtures/issue305.go
aarzilli 453bd0217f proc: bugfix: clearing temp breakpoints
Temp breakpoints should be cleared even if a non-temp breakpoint is
triggered on the same goroutine that the temp breakpoints are set on.

Fixes #305
2016-01-16 09:13:15 +01:00

8 lines
73 B
Go

package main
func main() {
for i := 0; i < 10; i++ {
println(i)
}
}