about summary refs log tree commit diff
path: root/tests/ui/str/str-array-assignment.stderr
diff options
context:
space:
mode:
Diffstat (limited to 'tests/ui/str/str-array-assignment.stderr')
-rw-r--r--tests/ui/str/str-array-assignment.stderr1
1 files changed, 0 insertions, 1 deletions
diff --git a/tests/ui/str/str-array-assignment.stderr b/tests/ui/str/str-array-assignment.stderr
index 515cb9e12f8..76eb7833225 100644
--- a/tests/ui/str/str-array-assignment.stderr
+++ b/tests/ui/str/str-array-assignment.stderr
@@ -25,7 +25,6 @@ LL |   let v = s[..2];
    |
    = help: the trait `Sized` is not implemented for `str`
    = note: all local variables must have a statically known size
-   = help: unsized locals are gated as an unstable feature
 help: consider borrowing here
    |
 LL |   let v = &s[..2];