]> git.lizzy.rs Git - rust.git/blobdiff - tests/ui/inconsistent_digit_grouping.fixed
Auto merge of #7847 - mikerite:fix-7829, r=flip1995
[rust.git] / tests / ui / inconsistent_digit_grouping.fixed
index ae4d1806af494af782da82b7fd39261839edaa40..dd683e7f746a48ec16bc0acb3a0bc775f4a4ac22 100644 (file)
@@ -34,7 +34,14 @@ fn main() {
     // Test suggestion when fraction has no digits
     let _: f32 = 123_456.;
 
+    // Test UUID formatted literal
+    let _: u128 = 0x12345678_1234_1234_1234_123456789012;
+
     // Ignore literals in macros
     let _ = mac1!();
     let _ = mac2!();
+
+    // Issue #6096
+    // Allow separating exponent with '_'
+    let _ = 1.025_011_10_E0;
 }