Skip to content

Commit

Permalink
Update ui test suite to nightly-2022-07-28
Browse files Browse the repository at this point in the history
  • Loading branch information
dtolnay committed Jul 28, 2022
1 parent 29cc169 commit d196f95
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions tests/ui/not-repeatable.stderr
Original file line number Diff line number Diff line change
Expand Up @@ -7,21 +7,21 @@ error[E0599]: the method `quote_into_iter` exists for struct `Ipv4Addr`, but its
| method `quote_into_iter` not found for this struct
| doesn't satisfy `Ipv4Addr: Iterator`
| doesn't satisfy `Ipv4Addr: ToTokens`
| doesn't satisfy `Ipv4Addr: quote::__private::ext::RepIteratorExt`
| doesn't satisfy `Ipv4Addr: quote::__private::ext::RepToTokensExt`
| doesn't satisfy `Ipv4Addr: ext::RepIteratorExt`
| doesn't satisfy `Ipv4Addr: ext::RepToTokensExt`
...
7 | let _ = quote! { #(#ip)* };
| ^^^^^^^^^^^^^^^^^^ method cannot be called on `Ipv4Addr` due to unsatisfied trait bounds
|
= note: the following trait bounds were not satisfied:
`Ipv4Addr: Iterator`
which is required by `Ipv4Addr: quote::__private::ext::RepIteratorExt`
which is required by `Ipv4Addr: ext::RepIteratorExt`
`&Ipv4Addr: Iterator`
which is required by `&Ipv4Addr: quote::__private::ext::RepIteratorExt`
which is required by `&Ipv4Addr: ext::RepIteratorExt`
`Ipv4Addr: ToTokens`
which is required by `Ipv4Addr: quote::__private::ext::RepToTokensExt`
which is required by `Ipv4Addr: ext::RepToTokensExt`
`&mut Ipv4Addr: Iterator`
which is required by `&mut Ipv4Addr: quote::__private::ext::RepIteratorExt`
which is required by `&mut Ipv4Addr: ext::RepIteratorExt`
note: the following traits must be implemented
--> $RUST/core/src/iter/traits/iterator.rs
|
Expand Down

0 comments on commit d196f95

Please sign in to comment.