From 9966009500f72548a11d24f91fe26b20bc7dcf9c Mon Sep 17 00:00:00 2001 From: Devin Bidwell Date: Thu, 1 Jan 2026 03:25:53 -0700 Subject: [PATCH] update tests --- rust_compiler/libs/tokenizer/src/token.rs | 16 ---------------- 1 file changed, 16 deletions(-) diff --git a/rust_compiler/libs/tokenizer/src/token.rs b/rust_compiler/libs/tokenizer/src/token.rs index b3e9b82..df07d78 100644 --- a/rust_compiler/libs/tokenizer/src/token.rs +++ b/rust_compiler/libs/tokenizer/src/token.rs @@ -1065,20 +1065,4 @@ mod tests { ); Ok(()) } - - #[test] - fn test_binary_with_temperature_suffix() -> anyhow::Result<()> { - // Binary, octal, and hex literals do NOT support temperature suffixes - // (temperature suffixes are only for decimal numbers) - // This test verifies that trying to parse something like 0b1010c - // will be treated as 0b101 followed by 0 (the 'c' would start a new token or error) - Ok(()) - } - - #[test] - fn test_hex_with_temperature_suffix() -> anyhow::Result<()> { - // Hex, octal, and binary literals do NOT support temperature suffixes - // Temperature suffixes are only for decimal numbers - Ok(()) - } }