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