blob: 0cb08ff99bd09ffe2e198b716895485e219f35e2 [file] [log] [blame]
// +build ignore
package main
import "fmt"
type S int
var theS S
func (s *S) String() string {
print(s) // @pointsto main.theS
return ""
}
func main() {
fmt.Println("Hello, World!", &theS)
}
// @calls main.main -> fmt.Println
// @calls (*fmt.pp).handleMethods -> (*main.S).String