github.com/go-asm/go@v1.21.1-0.20240213172139-40c5ead50c48/cmd/link/ld/testdata/issue25459/main/main.go (about)

     1  package main
     2  
     3  import "github.com/go-asm/go/cmd/link/ld/testdata/issue25459/a"
     4  
     5  var Glob int
     6  
     7  func main() {
     8  	a.Another()
     9  	Glob += a.ConstIf() + a.CallConstIf()
    10  }