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

15 lines
185 B
Go

// +build mage
package main
import "fmt"
// Synopsis for returns error.
// And some more text.
func ReturnsError() error {
fmt.Println("stuff")
return nil
}
func nonexported() {}