Files
delve/_fixtures/traceret.go
Alessandro Arzilli 1c800f3b1b terminal: trace /regexp/ should set ret breakpoints correctly (#4130)
Fix the way the trace command sets return breakpoints when a regexp is passed.

Fixes #4036
2025-09-02 12:40:49 -04:00

17 lines
160 B
Go

package main
import "fmt"
func fncall1() int {
return 1
}
func fncall2() int {
return 2
}
func main() {
fmt.Println(fncall1())
fmt.Println(fncall2())
}