delve/_fixtures/testnextdefer.go

11 lines
105 B
Go
Raw Permalink Normal View History

package main
import "fmt"
func main() {
defer func() {
fmt.Println("hi")
}()
fmt.Println("bye")
}