Sign in
go
/
tools
/
8c3ba8c1039ec857f115ba4d20e9e271979fae43
/
.
/
internal
/
refactor
/
inline
/
analyzer
/
testdata
/
src
/
b
/
b.go
blob: 069e670d51ea67c3e69b91e3201af03a7444dbc8 [
file
] [
log
] [
blame
]
package b
import "a"
func f() {
a.One()
// want `cannot inline call to a.One because body refers to non-exported one`
new(a.T).Two()
// want `inline call of \(a.T\).Two`
}