
Fixes a bug where breakpoint condition evaluation would never load the value if the breakpoint condition consisted of just a single variable. Fix #1264
11 lines
157 B
Go
11 lines
157 B
Go
package main
|
|
|
|
import "fmt"
|
|
|
|
func main() {
|
|
for i := 0; i < 4; i++ {
|
|
equalsTwo := i == 2
|
|
fmt.Printf("i: %d -> equalsTwo: %t \n", i, equalsTwo) // :8
|
|
}
|
|
}
|