]> git.lizzy.rs Git - rust.git/blobdiff - src/test/ui/resolve/issue-5035-2.stderr
Suggest borrowing in more unsized fn param cases
[rust.git] / src / test / ui / resolve / issue-5035-2.stderr
index ec2882d6c6d7366fef76173819cdc24a8ff055b3..4ed93ad3279adec5bb4ea680e90ed9ab29b84d6b 100644 (file)
@@ -5,8 +5,11 @@ LL | fn foo(_x: K) {}
    |        ^^ doesn't have a size known at compile-time
    |
    = help: the trait `std::marker::Sized` is not implemented for `(dyn I + 'static)`
-   = note: all local variables must have a statically known size
    = help: unsized locals are gated as an unstable feature
+help: function arguments must have a statically known size, borrowed types always have a known size
+   |
+LL | fn foo(_x: &K) {}
+   |            ^
 
 error: aborting due to previous error