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`
}