]> git.lizzy.rs Git - rust.git/blob - src/test/ui/issues/issue-27078.stderr
Rollup merge of #91804 - woppopo:const_clone, r=oli-obk
[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:3:12
3    |
4 LL |     fn foo(self) -> &'static i32 {
5    |            ^^^^ doesn't have a size known at compile-time
6    |
7    = help: unsized fn params are gated as an unstable feature
8 help: consider further restricting `Self`
9    |
10 LL |     fn foo(self) -> &'static i32 where Self: Sized {
11    |                                  +++++++++++++++++
12 help: function arguments must have a statically known size, borrowed types always have a known size
13    |
14 LL |     fn foo(&self) -> &'static i32 {
15    |            +
16
17 error: aborting due to previous error
18
19 For more information about this error, try `rustc --explain E0277`.