gotools/refactor/eg/testdata/bad_type.txtar


-- go.mod --
module example.com
go 1.18

-- template/template.go --
package template

// Test in which replacement has a different type.

const shouldFail = "int is not a safe replacement for string"

func before() interface{} { return "three" }
func after() interface{}  { return 3 }