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 --- tests/ui/issues/issue-32323.stderr | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 tests/ui/issues/issue-32323.stderr (limited to 'tests/ui/issues/issue-32323.stderr') diff --git a/tests/ui/issues/issue-32323.stderr b/tests/ui/issues/issue-32323.stderr new file mode 100644 index 000000000..8212c607e --- /dev/null +++ b/tests/ui/issues/issue-32323.stderr @@ -0,0 +1,18 @@ +error[E0308]: mismatched types + --> $DIR/issue-32323.rs:5:30 + | +LL | pub fn f<'a, T: Tr<'a>>() -> >::Out {} + | - ^^^^^^^^^^^^^^^^^^ expected associated type, found `()` + | | + | implicitly returns `()` as its body has no tail or `return` expression + | + = note: expected associated type `>::Out` + found unit type `()` +help: consider constraining the associated type `>::Out` to `()` + | +LL | pub fn f<'a, T: Tr<'a, Out = ()>>() -> >::Out {} + | ++++++++++ + +error: aborting due to previous error + +For more information about this error, try `rustc --explain E0308`. -- cgit v1.2.3