Sign in
android
/
platform
/
prebuilts
/
go
/
windows-x86
/
refs/heads/main
/
.
/
test
/
fixedbugs
/
issue7995b.dir
/
x1.go
blob: 075911b921c878b7817be7d654ceb420128c584e [
file
] [
log
] [
blame
] [
edit
]
package x1
import "fmt"
var P int
var b bool
func F(x *int) string {
if b {
// avoid inlining
F(x)
}
P = 50
*x = 100
return fmt.Sprintln(P, *x)
}