1
0
mirror of https://github.com/mgechev/revive.git synced 2024-11-24 08:32:22 +02:00
revive/testdata/string_format_issue_1063.go
2024-11-11 19:31:18 +01:00

10 lines
157 B
Go

package fixtures
import (
"errors"
)
func ReturnError() error {
return errors.New("This is an error.") // MATCH /must not start with a capital letter/
}