From d196f9563ea850c3b2c6d35e4f75119a4d869393 Mon Sep 17 00:00:00 2001 From: David Tolnay Date: Wed, 27 Jul 2022 21:03:20 -0700 Subject: [PATCH] Update ui test suite to nightly-2022-07-28 --- tests/ui/not-repeatable.stderr | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/tests/ui/not-repeatable.stderr b/tests/ui/not-repeatable.stderr index 77f2d9c..f75351e 100644 --- a/tests/ui/not-repeatable.stderr +++ b/tests/ui/not-repeatable.stderr @@ -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 |