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

     1  package main
     2  
     3  func main() {
     4  	s := ""
     5  	t := "test"
     6  	panic("panic!!!")
     7  	println(s, t)
     8  }