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