about summary refs log tree commit diff
path: root/src/test/ui/compare-method
diff options
context:
space:
mode:
authorb-naber <bn263@gmx.de>2022-09-21 17:57:30 +0200
committerb-naber <bn263@gmx.de>2022-09-26 14:21:39 +0200
commit6118ee343f5ebbea657337a5dceb9ded40fde117 (patch)
tree16f672a21368664e47a06623f3f370bf78223021 /src/test/ui/compare-method
parent897adb866665997fe8dfb66dc338faba9671577a (diff)
downloadrust-6118ee343f5ebbea657337a5dceb9ded40fde117.tar.gz
rust-6118ee343f5ebbea657337a5dceb9ded40fde117.zip
address review
Diffstat (limited to 'src/test/ui/compare-method')
-rw-r--r--src/test/ui/compare-method/issue-90444.stderr6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/test/ui/compare-method/issue-90444.stderr b/src/test/ui/compare-method/issue-90444.stderr
index 84bbec0623f..ee63f34b799 100644
--- a/src/test/ui/compare-method/issue-90444.stderr
+++ b/src/test/ui/compare-method/issue-90444.stderr
@@ -5,10 +5,10 @@ LL |     fn from(_: fn((), (), &mut ())) -> Self {
    |                ^^^^^^^^^^^^^^^^^^^
    |                |
    |                types differ in mutability
-   |                help: change the parameter type to match the trait: `for<'r> fn((), (), &'r ())`
+   |                help: change the parameter type to match the trait: `for<'a> fn((), (), &'a ())`
    |
-   = note: expected fn pointer `fn(for<'r> fn((), (), &'r ())) -> A`
-              found fn pointer `fn(for<'r> fn((), (), &'r mut ())) -> A`
+   = note: expected fn pointer `fn(for<'a> fn((), (), &'a ())) -> A`
+              found fn pointer `fn(for<'a> fn((), (), &'a mut ())) -> A`
 
 error[E0053]: method `from` has an incompatible type for trait
   --> $DIR/issue-90444.rs:11:16