(id int64, badType string)
| 609 | } |
| 610 | |
| 611 | func decimalFormatErrorV2(id int64, badType string) error { |
| 612 | return newFormatError(id, "decimal clause can only be used on ints, uints, and doubles, was given %s", badType) |
| 613 | } |
| 614 | |
| 615 | func fixedPointFormatErrorV2(id int64, badType string) error { |
| 616 | return newFormatError(id, "fixed-point clause can only be used on ints, uints, and doubles, was given %s", badType) |
no test coverage detected