1error[E0726]: implicit elided lifetime not allowed here
2 --> $DIR/unsupported_elided.rs:6:14
3  |
46 |         type T;
5  |              ^- help: indicate the anonymous lifetime: `<'_>`
6
7error[E0106]: missing lifetime specifier
8 --> $DIR/unsupported_elided.rs:8:24
9  |
108 |         fn f(t: &T) -> &str;
11  |                 --     ^ expected named lifetime parameter
12  |
13  = 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
14help: consider introducing a named lifetime parameter
15  |
168 |         fn f<'a>(t: &'a T) -> &'a str;
17  |             ^^^^    ^^^^^     ^^^
18