summaryrefslogtreecommitdiffstats
path: root/tests/ui/regions/issue-101280.stderr
diff options
context:
space:
mode:
Diffstat (limited to 'tests/ui/regions/issue-101280.stderr')
-rw-r--r--tests/ui/regions/issue-101280.stderr6
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/ui/regions/issue-101280.stderr b/tests/ui/regions/issue-101280.stderr
index 320d008ae..48deb9949 100644
--- a/tests/ui/regions/issue-101280.stderr
+++ b/tests/ui/regions/issue-101280.stderr
@@ -6,9 +6,9 @@ LL | fn f<'r>(f: fn(Cell<(&'r i32, &i32)>)) -> Ty {
LL | f
| ^ one type is more general than the other
|
- = note: expected fn pointer `for<'r> fn(Cell<(&'r i32, &'r i32)>)`
- found fn pointer `for<'a> fn(Cell<(&'r i32, &'a i32)>)`
+ = note: expected fn pointer `for<'r> fn(Cell<(&'r _, &'r _)>)`
+ found fn pointer `for<'a> fn(Cell<(&'r _, &'a _)>)`
-error: aborting due to previous error
+error: aborting due to 1 previous error
For more information about this error, try `rustc --explain E0308`.