Files
LearnGO/go/pkg/mod/github.com/go-delve/delve@v1.23.0/_fixtures/stepintobug.go
T
2024-09-19 21:38:24 -04:00

15 lines
139 B
Go

package main
type T struct {
}
func main() {
t := T{}
f1 := t.m1
println(f1(1)) //break
}
func (t T) m1(x int) int {
return x + 1
}