Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions test_suite/tests/ui/with/incorrect_type.stderr
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ error[E0277]: the trait bound `&u8: Serializer` is not satisfied
| --- required by a bound introduced by this call
|
= help: the following other types implement trait `Serializer`:
&'a mut Formatter<'b>
&mut Formatter<'a>
FlatMapSerializer<'a, M>
_::_serde::__private::ser::content::ContentSerializer<E>
note: required by a bound in `w::serialize`
Expand Down Expand Up @@ -35,7 +35,7 @@ error[E0277]: the trait bound `&u8: Serializer` is not satisfied
| ^^^ the trait `Serializer` is not implemented for `&u8`
|
= help: the following other types implement trait `Serializer`:
&'a mut Formatter<'b>
&mut Formatter<'a>
FlatMapSerializer<'a, M>
_::_serde::__private::ser::content::ContentSerializer<E>

Expand All @@ -56,7 +56,7 @@ error[E0277]: the trait bound `&u8: Serializer` is not satisfied
| -------------- required by a bound introduced by this call
|
= help: the following other types implement trait `Serializer`:
&'a mut Formatter<'b>
&mut Formatter<'a>
FlatMapSerializer<'a, M>
_::_serde::__private::ser::content::ContentSerializer<E>
note: required by a bound in `w::serialize`
Expand Down Expand Up @@ -84,7 +84,7 @@ error[E0277]: the trait bound `&u8: Serializer` is not satisfied
| ^^^^^^^^^^^^^^ the trait `Serializer` is not implemented for `&u8`
|
= help: the following other types implement trait `Serializer`:
&'a mut Formatter<'b>
&mut Formatter<'a>
FlatMapSerializer<'a, M>
_::_serde::__private::ser::content::ContentSerializer<E>

Expand Down
Loading