From b5946687724afb6d24ba55fc5e8ad79e824b5d83 Mon Sep 17 00:00:00 2001 From: David Tolnay Date: Wed, 27 Jul 2022 21:03:27 -0700 Subject: [PATCH] Update ui test suite to nightly-2022-07-28 --- tests/ui/no-impl.stderr | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/tests/ui/no-impl.stderr b/tests/ui/no-impl.stderr index 1e4a9ba..7c5ec50 100644 --- a/tests/ui/no-impl.stderr +++ b/tests/ui/no-impl.stderr @@ -5,7 +5,7 @@ error[E0599]: the method `anyhow_kind` exists for reference `&Error`, but its tr | ------------ | | | doesn't satisfy `Error: Into` - | doesn't satisfy `Error: anyhow::private::kind::TraitKind` + | doesn't satisfy `Error: anyhow::kind::TraitKind` | doesn't satisfy `Error: std::fmt::Display` ... 7 | let _ = anyhow!(Error); @@ -13,11 +13,11 @@ error[E0599]: the method `anyhow_kind` exists for reference `&Error`, but its tr | = note: the following trait bounds were not satisfied: `Error: Into` - which is required by `Error: anyhow::private::kind::TraitKind` + which is required by `Error: anyhow::kind::TraitKind` `Error: std::fmt::Display` - which is required by `&Error: anyhow::private::kind::AdhocKind` + which is required by `&Error: anyhow::kind::AdhocKind` `&Error: Into` - which is required by `&Error: anyhow::private::kind::TraitKind` + which is required by `&Error: anyhow::kind::TraitKind` note: the following traits must be implemented --> $RUST/core/src/convert/mod.rs |