mirror of
https://gitee.com/openharmony/third_party_rust_cxx
synced 2024-11-23 07:10:29 +00:00
16 lines
595 B
Plaintext
16 lines
595 B
Plaintext
error: hidden lifetime parameters in types are deprecated
|
|
--> tests/ui/deny_elided_lifetimes.rs:21:50
|
|
|
|
|
21 | fn lifetime_elided(s: &i32) -> UniquePtr<Cpp>;
|
|
| ^^^ expected lifetime parameter
|
|
|
|
|
note: the lint level is defined here
|
|
--> tests/ui/deny_elided_lifetimes.rs:1:9
|
|
|
|
|
1 | #![deny(elided_lifetimes_in_paths)]
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
help: indicate the anonymous lifetime
|
|
|
|
|
21 | fn lifetime_elided(s: &i32) -> UniquePtr<Cpp<'_>>;
|
|
| ++++
|