From 1e88be82ebb73e2e628cd8b9997c04d44ffdefbe Mon Sep 17 00:00:00 2001 From: David Tolnay Date: Thu, 28 Dec 2017 00:46:05 -0500 Subject: [PATCH] Hex literal support no longer exists --- tests/test.rs | 8 -------- 1 file changed, 8 deletions(-) diff --git a/tests/test.rs b/tests/test.rs index b2d8d3a..ba35d61 100644 --- a/tests/test.rs +++ b/tests/test.rs @@ -147,14 +147,6 @@ fn test_integer() { assert_eq!(expected, tokens.to_string()); } -// #[test] -// fn test_hex() { -// let hex = quote::Hex(0xFFFF_0000_u32); -// let tokens = quote!(#hex); -// let expected = "0xFFFF0000u32"; -// assert_eq!(expected, tokens.to_string()); -// } - #[test] fn test_floating() { let e32 = 2.345f32;