summaryrefslogtreecommitdiffstats
path: root/tests/ui/generic-associated-types/collectivity-regression.stderr
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--tests/ui/generic-associated-types/collectivity-regression.stderr24
1 files changed, 24 insertions, 0 deletions
diff --git a/tests/ui/generic-associated-types/collectivity-regression.stderr b/tests/ui/generic-associated-types/collectivity-regression.stderr
new file mode 100644
index 000000000..a085096e1
--- /dev/null
+++ b/tests/ui/generic-associated-types/collectivity-regression.stderr
@@ -0,0 +1,24 @@
+error: `T` does not live long enough
+ --> $DIR/collectivity-regression.rs:13:5
+ |
+LL | / || {
+LL | |
+LL | | //
+LL | | // FIXME(#98437). This regressed at some point and
+LL | | // probably should work.
+LL | | let _x = x;
+LL | | };
+ | |_____^
+ |
+note: due to current limitations in the borrow checker, this implies a `'static` lifetime
+ --> $DIR/collectivity-regression.rs:11:16
+ |
+LL | for<'a> T: Get<Value<'a> = ()>,
+ | ^^^^^^^^^^^^^^^^^^^
+help: consider restricting the type parameter to the `'static` lifetime
+ |
+LL | for<'a> T: Get<Value<'a> = ()> + 'static,
+ | +++++++++
+
+error: aborting due to previous error
+