golang.org/x/tools@v0.21.0/internal/refactor/inline/analyzer/testdata/src/b/b.go (about) 1 package b 2 3 import "a" 4 5 func f() { 6 a.One() // want `cannot inline call to a.One because body refers to non-exported one` 7 8 new(a.T).Two() // want `inline call of \(a.T\).Two` 9 }