this tests that the default nilability for error returns is `nilable`
()
| 29 | |
| 30 | // this tests that the default nilability for error returns is `nilable` |
| 31 | func retsJustErr() error { |
| 32 | return nil |
| 33 | } |
| 34 | |
| 35 | // this tests that the default nilability for error params is `nilable` |
| 36 | func takesJustErr(e error) { |