os-rust/tests/ui/nll/issue-54302.stderr

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

12 lines
482 B
Text
Raw Normal View History

error: implementation of `Deserialize` is not general enough
2018-12-25 08:56:47 -07:00
--> $DIR/issue-54302.rs:13:5
|
LL | assert_deserialize_owned::<&'static str>();
2019-09-01 21:51:16 -07:00
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ implementation of `Deserialize` is not general enough
|
2019-09-01 21:51:16 -07:00
= 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 1 previous error