delve/_fixtures/decllinetest.go

16 lines
144 B
Go
Raw Normal View History

package main
import (
"fmt"
"runtime"
)
func main() {
a := 0
runtime.Breakpoint()
a++
b := 0
runtime.Breakpoint()
fmt.Println(a, b)
}