blob: 94927756c8ebd8fa3b773bb7fff79839c89b836b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
// +build mage
package main
import "fmt"
// Synopsis for "returns" error.
// And some more text.
func ReturnsNilError() error {
fmt.Println("stuff")
return nil
}
func nonexported() {}
|