1error: hidden lifetime parameters in types are deprecated 2 --> tests/ui/deny_elided_lifetimes.rs:21:50 3 | 421 | fn lifetime_elided(s: &i32) -> UniquePtr<Cpp>; 5 | ^^^ expected lifetime parameter 6 | 7note: the lint level is defined here 8 --> tests/ui/deny_elided_lifetimes.rs:1:9 9 | 101 | #![deny(elided_lifetimes_in_paths)] 11 | ^^^^^^^^^^^^^^^^^^^^^^^^^ 12help: indicate the anonymous lifetime 13 | 1421 | fn lifetime_elided(s: &i32) -> UniquePtr<Cpp<'_>>; 15 | ++++ 16