summaryrefslogtreecommitdiffstats
path: root/tests/ui/suggestions/issue-84592.rs
diff options
context:
space:
mode:
Diffstat (limited to 'tests/ui/suggestions/issue-84592.rs')
-rw-r--r--tests/ui/suggestions/issue-84592.rs17
1 files changed, 17 insertions, 0 deletions
diff --git a/tests/ui/suggestions/issue-84592.rs b/tests/ui/suggestions/issue-84592.rs
new file mode 100644
index 000000000..aa246aaa3
--- /dev/null
+++ b/tests/ui/suggestions/issue-84592.rs
@@ -0,0 +1,17 @@
+/* Checks whether issue #84592 has been resolved. The issue was
+ * that in this example, there are two expected/missing lifetime
+ * parameters with *different spans*, leading to incorrect
+ * suggestions from rustc.
+ */
+
+struct TwoLifetimes<'x, 'y> {
+ x: &'x (),
+ y: &'y (),
+}
+
+fn two_lifetimes_needed(a: &(), b: &()) -> TwoLifetimes<'_, '_> {
+//~^ ERROR missing lifetime specifiers [E0106]
+ TwoLifetimes { x: &(), y: &() }
+}
+
+fn main() {}