summaryrefslogtreecommitdiffstats
path: root/tests/ui/nll/closure-requirements/propagate-from-trait-match.rs
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-17 12:19:03 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-17 12:19:03 +0000
commit64d98f8ee037282c35007b64c2649055c56af1db (patch)
tree5492bcf97fce41ee1c0b1cc2add283f3e66cdab0 /tests/ui/nll/closure-requirements/propagate-from-trait-match.rs
parentAdding debian version 1.67.1+dfsg1-1. (diff)
downloadrustc-64d98f8ee037282c35007b64c2649055c56af1db.tar.xz
rustc-64d98f8ee037282c35007b64c2649055c56af1db.zip
Merging upstream version 1.68.2+dfsg1.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'tests/ui/nll/closure-requirements/propagate-from-trait-match.rs')
-rw-r--r--tests/ui/nll/closure-requirements/propagate-from-trait-match.rs48
1 files changed, 48 insertions, 0 deletions
diff --git a/tests/ui/nll/closure-requirements/propagate-from-trait-match.rs b/tests/ui/nll/closure-requirements/propagate-from-trait-match.rs
new file mode 100644
index 000000000..cda781d8e
--- /dev/null
+++ b/tests/ui/nll/closure-requirements/propagate-from-trait-match.rs
@@ -0,0 +1,48 @@
+// Test that regions which appear only in the closure's generics (in
+// this case, `'a`) are properly mapped to the creator's generics. In
+// this case, the closure constrains its type parameter `T` to outlive
+// the same `'a` for which it implements `Trait`, which can only be the `'a`
+// from the function definition.
+
+// compile-flags:-Zverbose
+
+#![feature(rustc_attrs)]
+#![allow(dead_code)]
+
+trait Trait<'a> {}
+
+fn establish_relationships<T, F>(value: T, closure: F)
+where
+ F: FnOnce(T),
+{
+ closure(value)
+}
+
+fn require<'a, T>(t: T)
+where
+ T: Trait<'a> + 'a,
+{
+}
+
+#[rustc_regions]
+fn supply<'a, T>(value: T)
+where
+ T: Trait<'a>,
+{
+ establish_relationships(value, |value| {
+ // This function call requires that
+ //
+ // (a) T: Trait<'a>
+ //
+ // and
+ //
+ // (b) T: 'a
+ //
+ // The latter does not hold.
+
+ require(value);
+ //~^ ERROR the parameter type `T` may not live long enough
+ });
+}
+
+fn main() {}