]> 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 17210b6b275aa20b0b0201876715ecf79f747d1c..0b3af2d8bc35fea0b4a2fcace4f6cf7a1ad1e8d3 100644 (file)
@@ -1,91 +1,73 @@
 error: inconsistent casing in hexadecimal literal
   --> $DIR/literals.rs:14:17
    |
-14 |     let fail1 = 0xabCD;
+LL |     let fail1 = 0xabCD;
    |                 ^^^^^^
    |
-   = note: `-D mixed-case-hex-literals` implied by `-D warnings`
+   = note: `-D clippy::mixed-case-hex-literals` implied by `-D warnings`
 
 error: inconsistent casing in hexadecimal literal
   --> $DIR/literals.rs:15:17
    |
-15 |     let fail2 = 0xabCD_u32;
+LL |     let fail2 = 0xabCD_u32;
    |                 ^^^^^^^^^^
 
 error: inconsistent casing in hexadecimal literal
   --> $DIR/literals.rs:16:17
    |
-16 |     let fail2 = 0xabCD_isize;
+LL |     let fail2 = 0xabCD_isize;
    |                 ^^^^^^^^^^^^
 
-error: integer type suffix should be separated by an underscore
-  --> $DIR/literals.rs:17:27
-   |
-17 |     let fail_multi_zero = 000_123usize;
-   |                           ^^^^^^^^^^^^
-   |
-   = note: `-D unseparated-literal-suffix` implied by `-D warnings`
-
 error: this is a decimal constant
   --> $DIR/literals.rs:17:27
    |
-17 |     let fail_multi_zero = 000_123usize;
+LL |     let fail_multi_zero = 000_123usize;
    |                           ^^^^^^^^^^^^
    |
-   = note: `-D zero-prefixed-literal` implied by `-D warnings`
-help: if you mean to use a decimal constant, remove the `0` to remove confusion
+   = note: `-D clippy::zero-prefixed-literal` implied by `-D warnings`
+help: if you mean to use a decimal constant, remove the `0` to avoid confusion
    |
-17 |     let fail_multi_zero = 123usize;
+LL |     let fail_multi_zero = 123usize;
    |                           ^^^^^^^^
 help: if you mean to use an octal constant, use `0o`
    |
-17 |     let fail_multi_zero = 0o123usize;
+LL |     let fail_multi_zero = 0o123usize;
    |                           ^^^^^^^^^^
 
-error: integer type suffix should be separated by an underscore
-  --> $DIR/literals.rs:22:17
-   |
-22 |     let fail3 = 1234i32;
-   |                 ^^^^^^^
-
-error: integer type suffix should be separated by an underscore
-  --> $DIR/literals.rs:23:17
-   |
-23 |     let fail4 = 1234u32;
-   |                 ^^^^^^^
-
-error: integer type suffix should be separated by an underscore
-  --> $DIR/literals.rs:24:17
-   |
-24 |     let fail5 = 1234isize;
-   |                 ^^^^^^^^^
-
-error: integer type suffix should be separated by an underscore
-  --> $DIR/literals.rs:25:17
-   |
-25 |     let fail6 = 1234usize;
-   |                 ^^^^^^^^^
-
-error: float type suffix should be separated by an underscore
-  --> $DIR/literals.rs:26:17
-   |
-26 |     let fail7 = 1.5f32;
-   |                 ^^^^^^
-
 error: this is a decimal constant
-  --> $DIR/literals.rs:30:17
+  --> $DIR/literals.rs:21:17
    |
-30 |     let fail8 = 0123;
+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
    |
-30 |     let fail8 = 123;
+LL |     let fail8 = 123;
    |                 ^^^
 help: if you mean to use an octal constant, use `0o`
    |
-30 |     let fail8 = 0o123;
+LL |     let fail8 = 0o123;
    |                 ^^^^^
 
-error: aborting due to 11 previous errors
+error: digits grouped inconsistently by underscores
+  --> $DIR/literals.rs:33:18
+   |
+LL |     let fail19 = 12_3456_21;
+   |                  ^^^^^^^^^^ help: consider: `12_345_621`
+   |
+   = note: `-D clippy::inconsistent-digit-grouping` implied by `-D warnings`
+
+error: digits grouped inconsistently by underscores
+  --> $DIR/literals.rs:34:18
+   |
+LL |     let fail22 = 3__4___23;
+   |                  ^^^^^^^^^ help: consider: `3_423`
+
+error: digits grouped inconsistently by underscores
+  --> $DIR/literals.rs:35:18
+   |
+LL |     let fail23 = 3__16___23;
+   |                  ^^^^^^^^^^ help: consider: `31_623`
+
+error: aborting due to 8 previous errors