]> git.proxmox.com Git - rustc.git/blobdiff - src/test/ui/error-codes/E0586.stderr
Update unsuspicious file list
[rustc.git] / src / test / ui / error-codes / E0586.stderr
index bd72fbee16047f9de2672520b4748c57de8d8902..0bbf9a6080349f4a0d4f6f135803f3538024fcd8 100644 (file)
@@ -1,10 +1,10 @@
 error[E0586]: inclusive range with no end
-  --> $DIR/E0586.rs:13:22
+  --> $DIR/E0586.rs:3:19
    |
-LL |     let x = &tmp[1..=]; //~ ERROR E0586
-   |                      ^
+LL |     let x = &tmp[1..=];
+   |                   ^^^ help: use `..` instead
    |
-   = help: inclusive ranges must be bounded at the end (`..=b` or `a..=b`)
+   = note: inclusive ranges must be bounded at the end (`..=b` or `a..=b`)
 
 error: aborting due to previous error