(id int64, badType string)
| 621 | } |
| 622 | |
| 623 | func octalFormatErrorV2(id int64, badType string) error { |
| 624 | return newFormatError(id, "octal clause can only be used on ints and uints, was given %s", badType) |
| 625 | } |
| 626 | |
| 627 | func scientificFormatErrorV2(id int64, badType string) error { |
| 628 | return newFormatError(id, "scientific clause can only be used on ints, uints, and doubles, was given %s", badType) |
no test coverage detected