about summary refs log tree commit diff
path: root/src/test/ui/str/str-array-assignment.stderr
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/str/str-array-assignment.stderr')
-rw-r--r--src/test/ui/str/str-array-assignment.stderr9
1 files changed, 5 insertions, 4 deletions
diff --git a/src/test/ui/str/str-array-assignment.stderr b/src/test/ui/str/str-array-assignment.stderr
index 909ff1e0263..a133c69eeef 100644
--- a/src/test/ui/str/str-array-assignment.stderr
+++ b/src/test/ui/str/str-array-assignment.stderr
@@ -32,10 +32,11 @@ error[E0308]: mismatched types
   --> $DIR/str-array-assignment.rs:9:17
    |
 LL |   let w: &str = s[..2];
-   |                 ^^^^^^
-   |                 |
-   |                 expected `&str`, found `str`
-   |                 help: consider borrowing here: `&s[..2]`
+   |          ----   ^^^^^^
+   |          |      |
+   |          |      expected `&str`, found `str`
+   |          |      help: consider borrowing here: `&s[..2]`
+   |          expected due to this
 
 error: aborting due to 4 previous errors