You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
652 B
18 lines
652 B
error[E0726]: implicit elided lifetime not allowed here
|
|
--> $DIR/unsupported_elided.rs:6:14
|
|
|
|
|
6 | type T;
|
|
| ^- help: indicate the anonymous lifetime: `<'_>`
|
|
|
|
error[E0106]: missing lifetime specifier
|
|
--> $DIR/unsupported_elided.rs:8:24
|
|
|
|
|
8 | fn f(t: &T) -> &str;
|
|
| -- ^ expected named lifetime parameter
|
|
|
|
|
= help: this function's return type contains a borrowed value, but the signature does not say which one of `t`'s 2 lifetimes it is borrowed from
|
|
help: consider introducing a named lifetime parameter
|
|
|
|
|
8 | fn f<'a>(t: &'a T) -> &'a str;
|
|
| ^^^^ ^^^^^ ^^^
|