]> git.lizzy.rs Git - rust.git/blobdiff - tests/ui/literals.stderr
Auto merge of #68717 - petrochenkov:stabexpat, r=varkor
[rust.git] / tests / ui / literals.stderr
index 4f3d430c4d9992bd7b02a79c120b15933065f39f..0b3af2d8bc35fea0b4a2fcace4f6cf7a1ad1e8d3 100644 (file)
@@ -1,5 +1,5 @@
 error: inconsistent casing in hexadecimal literal
-  --> $DIR/literals.rs:13:17
+  --> $DIR/literals.rs:14:17
    |
 LL |     let fail1 = 0xabCD;
    |                 ^^^^^^
@@ -7,25 +7,25 @@ LL |     let fail1 = 0xabCD;
    = note: `-D clippy::mixed-case-hex-literals` implied by `-D warnings`
 
 error: inconsistent casing in hexadecimal literal
-  --> $DIR/literals.rs:14:17
+  --> $DIR/literals.rs:15:17
    |
 LL |     let fail2 = 0xabCD_u32;
    |                 ^^^^^^^^^^
 
 error: inconsistent casing in hexadecimal literal
-  --> $DIR/literals.rs:15:17
+  --> $DIR/literals.rs:16:17
    |
 LL |     let fail2 = 0xabCD_isize;
    |                 ^^^^^^^^^^^^
 
 error: this is a decimal constant
-  --> $DIR/literals.rs:16:27
+  --> $DIR/literals.rs:17:27
    |
 LL |     let fail_multi_zero = 000_123usize;
    |                           ^^^^^^^^^^^^
    |
    = note: `-D clippy::zero-prefixed-literal` implied by `-D warnings`
-help: if you mean to use a decimal constant, remove the `0` to remove confusion
+help: if you mean to use a decimal constant, remove the `0` to avoid confusion
    |
 LL |     let fail_multi_zero = 123usize;
    |                           ^^^^^^^^
@@ -35,11 +35,12 @@ LL |     let fail_multi_zero = 0o123usize;
    |                           ^^^^^^^^^^
 
 error: this is a decimal constant
-  --> $DIR/literals.rs:20:17
+  --> $DIR/literals.rs:21:17
    |
 LL |     let fail8 = 0123;
    |                 ^^^^
-help: if you mean to use a decimal constant, remove the `0` to remove confusion
+   |
+help: if you mean to use a decimal constant, remove the `0` to avoid confusion
    |
 LL |     let fail8 = 123;
    |                 ^^^
@@ -48,14 +49,6 @@ help: if you mean to use an octal constant, use `0o`
 LL |     let fail8 = 0o123;
    |                 ^^^^^
 
-error: digit groups should be smaller
-  --> $DIR/literals.rs:31:18
-   |
-LL |     let fail13 = 0x1_23456_78901_usize;
-   |                  ^^^^^^^^^^^^^^^^^^^^^ help: consider: `0x0123_4567_8901_usize`
-   |
-   = note: `-D clippy::large-digit-groups` implied by `-D warnings`
-
 error: digits grouped inconsistently by underscores
   --> $DIR/literals.rs:33:18
    |
@@ -76,5 +69,5 @@ error: digits grouped inconsistently by underscores
 LL |     let fail23 = 3__16___23;
    |                  ^^^^^^^^^^ help: consider: `31_623`
 
-error: aborting due to 9 previous errors
+error: aborting due to 8 previous errors