2018-07-15 16:11:54 -05:00
|
|
|
error[E0277]: the size for values of type `Self` cannot be known at compilation time
|
2018-12-25 09:56:47 -06:00
|
|
|
--> $DIR/issue-27078.rs:5:12
|
2018-07-15 16:11:54 -05:00
|
|
|
|
|
|
|
|
LL | fn foo(self) -> &'static i32 {
|
2020-04-22 18:31:58 -05:00
|
|
|
| ^^^^ doesn't have a size known at compile-time
|
2018-07-15 16:11:54 -05:00
|
|
|
|
|
2020-10-16 15:46:59 -05:00
|
|
|
= help: unsized fn params are gated as an unstable feature
|
2020-04-22 18:31:58 -05:00
|
|
|
help: consider further restricting `Self`
|
|
|
|
|
|
2020-09-02 02:40:56 -05:00
|
|
|
LL | fn foo(self) -> &'static i32 where Self: Sized {
|
|
|
|
| ^^^^^^^^^^^^^^^^^
|
2020-07-10 20:11:40 -05:00
|
|
|
help: function arguments must have a statically known size, borrowed types always have a known size
|
|
|
|
|
|
|
|
|
LL | fn foo(&self) -> &'static i32 {
|
|
|
|
| ^
|
2018-07-15 16:11:54 -05:00
|
|
|
|
|
|
|
error: aborting due to previous error
|
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0277`.
|