Source file src/cmd/objdump/testdata/fmthello.go
1 package main 2 3 import "fmt" 4 5 func main() { 6 Println("hello, world") 7 if flag { 8 //line fmthello.go:999999 9 Println("bad line") 10 for { 11 } 12 } 13 } 14 15 //go:noinline 16 func Println(s string) { 17 fmt.Println(s) 18 } 19 20 var flag bool 21