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

     1  package main
     2  
     3  import (
     4  	"fmt"
     5  
     6  	b "github.com/go-asm/go/cmd/link/ld/testdata/issue26237/b.dir"
     7  )
     8  
     9  var skyx int
    10  
    11  func main() {
    12  	skyx += b.OOO(skyx)
    13  	if b.Top(1) == 99 {
    14  		fmt.Printf("Beware the Jabberwock, my son!\n")
    15  	}
    16  }