Giant blob of minor changes
[dotfiles/.git] / .config / coc / extensions / coc-go-data / tools / pkg / mod / golang.org / x / tools@v0.0.0-20201028153306-37f0764111ff / refactor / eg / testdata / bad_type.template
1 package template
2
3 // Test in which replacement has a different type.
4
5 const shouldFail = "int is not a safe replacement for string"
6
7 func before() interface{} { return "three" }
8 func after() interface{}  { return 3 }