
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
8 lines
73 B
Go
8 lines
73 B
Go
package main
|
|
|
|
func main() {
|
|
for i := 0; i < 10; i++ {
|
|
println(i)
|
|
}
|
|
}
|