summaryrefslogtreecommitdiffstats
path: root/tests/ui/generic-associated-types/collectivity-regression.rs
diff options
context:
space:
mode:
Diffstat (limited to 'tests/ui/generic-associated-types/collectivity-regression.rs')
-rw-r--r--tests/ui/generic-associated-types/collectivity-regression.rs22
1 files changed, 22 insertions, 0 deletions
diff --git a/tests/ui/generic-associated-types/collectivity-regression.rs b/tests/ui/generic-associated-types/collectivity-regression.rs
new file mode 100644
index 000000000..54154f9d1
--- /dev/null
+++ b/tests/ui/generic-associated-types/collectivity-regression.rs
@@ -0,0 +1,22 @@
+// Regression test from https://github.com/rust-lang/rust/pull/98109
+
+pub trait Get {
+ type Value<'a>
+ where
+ Self: 'a;
+}
+
+fn multiply_at<T>(x: T)
+where
+ for<'a> T: Get<Value<'a> = ()>,
+{
+ || {
+ //~^ `T` does not live long enough
+ //
+ // FIXME(#98437). This regressed at some point and
+ // probably should work.
+ let _x = x;
+ };
+}
+
+fn main() {}