You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
package x1
|
|
|
|
import "fmt"
|
|
|
|
var P int
|
|
|
|
//go:noinline
|
|
func F(x *int) string {
|
|
P = 50
|
|
*x = 100
|
|
return fmt.Sprintln(P, *x)
|
|
}
|