summaryrefslogtreecommitdiffstats
path: root/src/test/ui/suggestions/issue-84592.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/suggestions/issue-84592.rs')
-rw-r--r--src/test/ui/suggestions/issue-84592.rs17
1 files changed, 0 insertions, 17 deletions
diff --git a/src/test/ui/suggestions/issue-84592.rs b/src/test/ui/suggestions/issue-84592.rs
deleted file mode 100644
index aa246aaa3..000000000
--- a/src/test/ui/suggestions/issue-84592.rs
+++ /dev/null
@@ -1,17 +0,0 @@
-/* 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() {}