.gitignore added
[dotfiles/.git] / .config / coc / extensions / coc-go-data / tools / pkg / mod / golang.org / x / tools@v0.1.1-0.20210319172145-bda8f5cee399 / refactor / eg / testdata / A.template
1 package template
2
3 // Basic test of type-aware expression refactoring.
4
5 import (
6         "errors"
7         "fmt"
8 )
9
10 func before(s string) error { return fmt.Errorf("%s", s) }
11 func after(s string) error  { return errors.New(s) }