github.com/wedaly/gospelunk@v0.0.0-20240506220214-89e2d4a79789/pkg/inspect/testdata/testmodule006/const.go (about)

     1  package main
     2  
     3  import "fmt"
     4  
     5  const intConst = 123
     6  
     7  func main() {
     8  	var x *int
     9  	if x == nil {
    10  		fmt.Printf("x is nil\n")
    11  	}
    12  
    13  	fmt.Printf("%v\n", intConst)
    14  }