2021-02-24 09:07:54 +01:00

14 lines
263 B
Go

//args: -Erevive
//config_path: testdata/configs/revive.yml
package testdata
import "time"
func testRevive(t *time.Duration) error {
if t == nil {
return nil
} else { // ERROR "indent-error-flow: if block ends with a return statement, .*"
return nil
}
}