]> 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 394b4be3340f5db4d0bdaf1bcde61ee88576cc1d..0bbf9a6080349f4a0d4f6f135803f3538024fcd8 100644 (file)
@@ -1,10 +1,10 @@
 error[E0586]: inclusive range with no end
-  --> $DIR/E0586.rs:3: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