about summary refs log tree commit diff
path: root/tests
diff options
context:
space:
mode:
authorJack Huey <31162821+jackh726@users.noreply.github.com>2022-09-11 03:53:54 -0400
committerJack Huey <31162821+jackh726@users.noreply.github.com>2023-02-09 20:38:27 -0500
commit1a663c0f53c71cbf69a982f699fbb00cdfce48f8 (patch)
tree24cffaaee470c90d260f7a759ae4767ab3ce4434 /tests
parent8996ea93b6e554148c4286e62b613f12a3ee505c (diff)
downloadrust-1a663c0f53c71cbf69a982f699fbb00cdfce48f8.tar.gz
rust-1a663c0f53c71cbf69a982f699fbb00cdfce48f8.zip
Cleanup free_region_relations a bit
Diffstat (limited to 'tests')
-rw-r--r--tests/ui/nll/issue-52057.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/ui/nll/issue-52057.rs b/tests/ui/nll/issue-52057.rs
index 98f49fe8f55..5991c1104c8 100644
--- a/tests/ui/nll/issue-52057.rs
+++ b/tests/ui/nll/issue-52057.rs
@@ -1,6 +1,6 @@
 // Regression test for #52057. There is an implied bound
-// that `I: 'a` where `'a` is the lifetime of `self` in `parse_first`;
-// but to observe that, one must normalize first.
+// that `I: 'x` where `'x` is the lifetime of the reference `&mut Self::Input`
+// in `parse_first`; but to observe that, one must normalize first.
 //
 // run-pass