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

     1  package main
     2  
     3  import "fmt"
     4  
     5  func f2() {
     6  	fmt.Printf("f2\n")
     7  }
     8  
     9  func f1() {
    10  	fmt.Printf("f1\n")
    11  }
    12  
    13  func main() {
    14  	f1()
    15  	f2()
    16  }