Update ui test suite to nightly-2022-07-28

This commit is contained in:
David Tolnay
2022-07-27 21:03:20 -07:00
parent 340ebea4ee
commit 0b07fad30b
+6 -6
View File
@@ -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
|