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/nll/issue-98693.rs | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 tests/ui/nll/issue-98693.rs (limited to 'tests/ui/nll/issue-98693.rs') diff --git a/tests/ui/nll/issue-98693.rs b/tests/ui/nll/issue-98693.rs new file mode 100644 index 000000000..7a325e2e9 --- /dev/null +++ b/tests/ui/nll/issue-98693.rs @@ -0,0 +1,21 @@ +// Regression test for #98693. +// +// The closure encounters an obligation that `T` must outlive `!U1`, +// a placeholder from universe U1. We were ignoring this placeholder +// when promoting the constraint to the enclosing function, and +// thus incorrectly judging the closure to be safe. + +fn assert_static() +where + for<'a> T: 'a, +{ +} + +fn test() { + || { + assert_static::(); + //~^ ERROR the parameter type `T` may not live long enough + }; +} + +fn main() {} -- cgit v1.2.3