Sign in
go
/
tools
/
9b68bc9966ee62cbe4704dea268ca17f0d2cd8a7
/
.
/
internal
/
gofix
/
testdata
/
src
/
binding_true
/
a.go
blob: eab7883d5508c8caa9354dd8d4e6f48ab1a5e5e0 [
file
]
package a
//go:fix inline
func f(x, y int) int {
// want f:`goFixInline a.f`
return y + x
}
func g() {
f(1, 2)
// want `Call of a.f should be inlined`
f(h(1), h(2))
// want `Call of a.f should be inlined`
}
func h(int) int