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

     1  package main
     2  
     3  var strings = []string{
     4  	"one",
     5  	"two",
     6  	"three",
     7  	"four",
     8  	"projects/my-gcp-project-id-string/locations/us-central1/queues/my-task-queue-name",
     9  	"five",
    10  	"six",
    11  }
    12  
    13  func f(s string) {
    14  	// ...
    15  }
    16  
    17  func main() {
    18  	for _, s := range strings {
    19  		f(s)
    20  	}
    21  }