gotools/refactor/eg/testdata/type_mismatch.txtar



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

-- template/template.go --
package template

const shouldFail = "different signatures"

func before() int   { return 0 }
func after() string { return "" }