From 64d98f8ee037282c35007b64c2649055c56af1db Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Wed, 17 Apr 2024 14:19:03 +0200 Subject: Merging upstream version 1.68.2+dfsg1. Signed-off-by: Daniel Baumann --- .../impl-trait-return-missing-constraint.stderr | 24 ---------------------- 1 file changed, 24 deletions(-) delete mode 100644 src/test/ui/associated-types/impl-trait-return-missing-constraint.stderr (limited to 'src/test/ui/associated-types/impl-trait-return-missing-constraint.stderr') diff --git a/src/test/ui/associated-types/impl-trait-return-missing-constraint.stderr b/src/test/ui/associated-types/impl-trait-return-missing-constraint.stderr deleted file mode 100644 index fbd76a64c..000000000 --- a/src/test/ui/associated-types/impl-trait-return-missing-constraint.stderr +++ /dev/null @@ -1,24 +0,0 @@ -error[E0271]: type mismatch resolving `::Item == i32` - --> $DIR/impl-trait-return-missing-constraint.rs:25:13 - | -LL | fn bar() -> impl Bar { - | -------- the expected opaque type -... -LL | fn baz() -> impl Bar { - | ^^^^^^^^^^^^^^^^^^^^ expected associated type, found `i32` -LL | -LL | bar() - | ----- return type was inferred to be `impl Bar` here - | - = note: expected associated type `::Item` - found type `i32` - = help: consider constraining the associated type `::Item` to `i32` or calling a method that returns `::Item` - = note: for more information, visit https://doc.rust-lang.org/book/ch19-03-advanced-traits.html -help: consider constraining the associated type `::Item` to `i32` - | -LL | fn bar() -> impl Bar { - | ++++++++++++ - -error: aborting due to previous error - -For more information about this error, try `rustc --explain E0271`. -- cgit v1.2.3