(id int64, badType string)
| 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) |
| 617 | } |
| 618 | |
| 619 | func hexFormatErrorV2(id int64, badType string) error { |
| 620 | return newFormatError(id, "only ints, uints, bytes, and strings can be formatted as hex, was given %s", badType) |
no test coverage detected