mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 06:51:58 +00:00
12 lines
491 B
Plaintext
12 lines
491 B
Plaintext
error: implementation of `Deserialize` is not general enough
|
|
--> $DIR/hrtb-cache-issue-54302.rs:19:5
|
|
|
|
|
LL | assert_deserialize_owned::<&'static str>();
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ implementation of `Deserialize` is not general enough
|
|
|
|
|
= note: `&'static str` must implement `Deserialize<'0>`, for any lifetime `'0`...
|
|
= note: ...but `&str` actually implements `Deserialize<'1>`, for some specific lifetime `'1`
|
|
|
|
error: aborting due to previous error
|
|
|