blob: 257a9dfc10e696617bfb28907ba327da7e63deb8 [file] [log] [blame]
package rmimport
import "a"
// Test that application of two fixes that each remove the second-last
// import of "a" results in removal of the import. This is implemented
// by the general analysis fix logic, not by any one analyzer.
func _() {
print(a.T{}.Two()) // want `should be inlined`
print(a.T{}.Two()) // want `should be inlined`
}