]> git.lizzy.rs Git - rust.git/blob - src/test/ui/issues/issue-27078.stderr
Suggest borrowing in more unsized fn param cases
[rust.git] / src / test / ui / issues / issue-27078.stderr
1 error[E0277]: the size for values of type `Self` cannot be known at compilation time
2   --> $DIR/issue-27078.rs:5:12
3    |
4 LL |     fn foo(self) -> &'static i32 {
5    |            ^^^^ doesn't have a size known at compile-time
6    |
7    = help: the trait `std::marker::Sized` is not implemented for `Self`
8    = help: unsized locals are gated as an unstable feature
9 help: consider further restricting `Self`
10    |
11 LL |     fn foo(self) -> &'static i32 where Self: std::marker::Sized {
12    |                                  ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
13 help: function arguments must have a statically known size, borrowed types always have a known size
14    |
15 LL |     fn foo(&self) -> &'static i32 {
16    |            ^
17
18 error: aborting due to previous error
19
20 For more information about this error, try `rustc --explain E0277`.