Home | History | Annotate | Download | only in issue7995b.dir
      1 package x1
      2 
      3 import "fmt"
      4 
      5 var P int
      6 
      7 //go:noinline
      8 func F(x *int) string {
      9 	P = 50
     10 	*x = 100
     11 	return fmt.Sprintln(P, *x)
     12 }
     13