about summary refs log tree commit diff
path: root/src/test/ui/error-codes
diff options
context:
space:
mode:
authorMazdak Farrokhzad <twingoow@gmail.com>2020-01-11 06:49:43 +0100
committerMazdak Farrokhzad <twingoow@gmail.com>2020-01-11 08:58:58 +0100
commit883932c6baf7acd28ab712b80ddeda960f6e37da (patch)
tree5c1310e44a4392e926b333bc4adcf602aa1b82c8 /src/test/ui/error-codes
parente6217972644588a3be4fecb85b195f17b0220047 (diff)
downloadrust-883932c6baf7acd28ab712b80ddeda960f6e37da.tar.gz
rust-883932c6baf7acd28ab712b80ddeda960f6e37da.zip
Ban `...X` pats, harden tests, and improve diagnostics.
Also fix a bug with the span passed in `mk_range`.
Diffstat (limited to 'src/test/ui/error-codes')
-rw-r--r--src/test/ui/error-codes/E0586.stderr6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/test/ui/error-codes/E0586.stderr b/src/test/ui/error-codes/E0586.stderr
index d1e7e3f4744..0bbf9a60803 100644
--- a/src/test/ui/error-codes/E0586.stderr
+++ b/src/test/ui/error-codes/E0586.stderr
@@ -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..=];
-   |                      ^
+   |                   ^^^ 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