about summary refs log tree commit diff
path: root/tests/ui/str
diff options
context:
space:
mode:
authormejrs <59372212+mejrs@users.noreply.github.com>2025-06-13 01:16:36 +0200
committermejrs <59372212+mejrs@users.noreply.github.com>2025-06-13 01:16:36 +0200
commitc0e02e26b39913ec1ee31621c65784542b137310 (patch)
tree840c5d2d5150ad40a5cf4cceff87164f3e24b8d4 /tests/ui/str
parent6c8138de8f1c96b2f66adbbc0e37c73525444750 (diff)
downloadrust-c0e02e26b39913ec1ee31621c65784542b137310.tar.gz
rust-c0e02e26b39913ec1ee31621c65784542b137310.zip
Unimplement unsized_locals
Diffstat (limited to 'tests/ui/str')
-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];