error with printf syntax
(format string, args ...interface{})
| 62 | |
| 63 | // error with printf syntax |
| 64 | func _errorf(format string, args ...interface{}) error { |
| 65 | return fmt.Errorf(format, args...) |
| 66 | } |
| 67 | |
| 68 | // panic with printf syntax |
| 69 | func _panicf(format string, args ...interface{}) { |
no outgoing calls
no test coverage detected