2019-08-12 17:15:33 -04:00
|
|
|
error[E0106]: missing lifetime specifier
|
2019-08-02 03:48:43 +02:00
|
|
|
--> $DIR/issue-63388-2.rs:12:10
|
2019-08-12 17:15:33 -04:00
|
|
|
|
|
2020-01-27 16:13:45 -08:00
|
|
|
LL | foo: &dyn Foo, bar: &'a dyn Foo
|
|
|
|
|
| -------- -----------
|
2019-08-12 17:15:33 -04:00
|
|
|
LL | ) -> &dyn Foo
|
2020-04-16 21:33:42 -07:00
|
|
|
| ^ expected named lifetime parameter
|
2019-08-12 17:15:33 -04:00
|
|
|
|
|
2020-01-27 16:13:45 -08:00
|
|
|
= help: this function's return type contains a borrowed value, but the signature does not say whether it is borrowed from `foo` or `bar`
|
2020-04-17 10:46:22 -07:00
|
|
|
help: consider using the `'a` lifetime
|
2020-04-16 21:33:42 -07:00
|
|
|
|
|
|
|
|
|
LL | ) -> &'a dyn Foo
|
2022-06-05 18:33:09 +02:00
|
|
|
| ++
|
2019-08-12 17:15:33 -04:00
|
|
|
|
2025-03-03 05:14:52 +00:00
|
|
|
error: aborting due to 1 previous error
|
2019-08-12 17:15:33 -04:00
|
|
|
|
2025-03-03 05:14:52 +00:00
|
|
|
For more information about this error, try `rustc --explain E0106`.
|