]> git.proxmox.com Git - rustc.git/blobdiff - src/tools/clippy/tests/ui/literals.stderr
New upstream version 1.56.0~beta.4+dfsg1
[rustc.git] / src / tools / clippy / tests / ui / literals.stderr
index 64ceeb316d8e5a109871389304449d97f424bda1..99542e20f785fea9f916c59976b20850fcd8edc7 100644 (file)
@@ -28,11 +28,11 @@ LL |     let fail_multi_zero = 000_123usize;
 help: if you mean to use a decimal constant, remove the `0` to avoid confusion
    |
 LL |     let fail_multi_zero = 123usize;
-   |                           ^^^^^^^^
+   |                           ~~~~~~~~
 help: if you mean to use an octal constant, use `0o`
    |
 LL |     let fail_multi_zero = 0o123usize;
-   |                           ^^^^^^^^^^
+   |                           ~~~~~~~~~~
 
 error: this is a decimal constant
   --> $DIR/literals.rs:21:17
@@ -43,11 +43,11 @@ LL |     let fail8 = 0123;
 help: if you mean to use a decimal constant, remove the `0` to avoid confusion
    |
 LL |     let fail8 = 123;
-   |                 ^^^
+   |                 ~~~
 help: if you mean to use an octal constant, use `0o`
    |
 LL |     let fail8 = 0o123;
-   |                 ^^^^^
+   |                 ~~~~~
 
 error: digits grouped inconsistently by underscores
   --> $DIR/literals.rs:33:18