(text: &str)
| 3590 | #[test] |
| 3591 | fn i64_as_hex() { |
| 3592 | fn parse_as_imm64(text: &str) -> ParseResult<Imm64> { |
| 3593 | Parser::new(text).match_imm64("unable to parse Imm64") |
| 3594 | } |
| 3595 | |
| 3596 | assert_eq!( |
| 3597 | parse_as_imm64("0x8000000000000000").unwrap(), |
nothing calls this directly
no test coverage detected