From 218caa410aa38c29984be31a5229b9fa717560ee Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Wed, 17 Apr 2024 14:19:13 +0200 Subject: Merging upstream version 1.68.2+dfsg1. Signed-off-by: Daniel Baumann --- .../nll/ty-outlives/projection-no-regions-fn.stderr | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 tests/ui/nll/ty-outlives/projection-no-regions-fn.stderr (limited to 'tests/ui/nll/ty-outlives/projection-no-regions-fn.stderr') diff --git a/tests/ui/nll/ty-outlives/projection-no-regions-fn.stderr b/tests/ui/nll/ty-outlives/projection-no-regions-fn.stderr new file mode 100644 index 000000000..e0ff544fe --- /dev/null +++ b/tests/ui/nll/ty-outlives/projection-no-regions-fn.stderr @@ -0,0 +1,21 @@ +error[E0309]: the associated type `::Item` may not live long enough + --> $DIR/projection-no-regions-fn.rs:13:5 + | +LL | Box::new(x.next()) + | ^^^^^^^^^^^^^^^^^^ + | + = help: consider adding an explicit lifetime bound `::Item: 'a`... + = note: ...so that the type `::Item` will meet its required lifetime bounds + +error[E0309]: the associated type `::Item` may not live long enough + --> $DIR/projection-no-regions-fn.rs:28:5 + | +LL | Box::new(x.next()) + | ^^^^^^^^^^^^^^^^^^ + | + = help: consider adding an explicit lifetime bound `::Item: 'a`... + = note: ...so that the type `::Item` will meet its required lifetime bounds + +error: aborting due to 2 previous errors + +For more information about this error, try `rustc --explain E0309`. -- cgit v1.2.3