]> 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 4e1e8e4c246a52bb3f742df74cdcadcdf8e2b315..0b3af2d8bc35fea0b4a2fcace4f6cf7a1ad1e8d3 100644 (file)
@@ -39,6 +39,7 @@ error: this is a decimal constant
    |
 LL |     let fail8 = 0123;
    |                 ^^^^
+   |
 help: if you mean to use a decimal constant, remove the `0` to avoid confusion
    |
 LL |     let fail8 = 123;
@@ -49,7 +50,7 @@ LL |     let fail8 = 0o123;
    |                 ^^^^^
 
 error: digits grouped inconsistently by underscores
-  --> $DIR/literals.rs:32:18
+  --> $DIR/literals.rs:33:18
    |
 LL |     let fail19 = 12_3456_21;
    |                  ^^^^^^^^^^ help: consider: `12_345_621`
@@ -57,13 +58,13 @@ LL |     let fail19 = 12_3456_21;
    = note: `-D clippy::inconsistent-digit-grouping` implied by `-D warnings`
 
 error: digits grouped inconsistently by underscores
-  --> $DIR/literals.rs:33:18
+  --> $DIR/literals.rs:34:18
    |
 LL |     let fail22 = 3__4___23;
    |                  ^^^^^^^^^ help: consider: `3_423`
 
 error: digits grouped inconsistently by underscores
-  --> $DIR/literals.rs:34:18
+  --> $DIR/literals.rs:35:18
    |
 LL |     let fail23 = 3__16___23;
    |                  ^^^^^^^^^^ help: consider: `31_623`