route/vendor/github.com/magefile/mage/parse/testdata/func.go

15 lines
185 B
Go
Raw Normal View History

2017-10-06 15:29:20 +00:00
// +build mage
package main
import "fmt"
// Synopsis for returns error.
// And some more text.
func ReturnsError() error {
fmt.Println("stuff")
return nil
}
func nonexported() {}