github.com/cnboonhan/delve@v0.0.0-20230908061759-363f2388c2fb/_fixtures/issue1432.go (about)

     1  package main
     2  
     3  import "runtime"
     4  
     5  type s struct {
     6  	i int64
     7  }
     8  
     9  func main() {
    10  	i := 1
    11  	p := &i
    12  	s := s{i: 1}
    13  	_ = s
    14  	runtime.Breakpoint()
    15  	println(i, p)
    16  }