f6119618b4ff718039552678d2c47d5d44d23e8a
[dotfiles/.git] / A.template
1 // +build ignore
2
3 package template
4
5 // Basic test of type-aware expression refactoring.
6
7 import (
8         "errors"
9         "fmt"
10 )
11
12 func before(s string) error { return fmt.Errorf("%s", s) }
13 func after(s string) error  { return errors.New(s) }