rust/tests/ui/regions/issue-101280.stderr

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

15 lines
549 B
Plaintext
Raw Normal View History

2022-09-18 20:02:56 +00:00
error[E0308]: mismatched types
--> $DIR/issue-101280.rs:6:5
|
LL | fn f<'r>(f: fn(Cell<(&'r i32, &i32)>)) -> Ty {
| -- expected `for<'r> fn(Cell<(&'r i32, &'r i32)>)` because of return type
LL | f
| ^ one type is more general than the other
|
= note: expected fn pointer `for<'r> fn(Cell<(&'r _, &'r _)>)`
found fn pointer `for<'a> fn(Cell<(&'r _, &'a _)>)`
2022-09-18 20:02:56 +00:00
error: aborting due to 1 previous error
2022-09-18 20:02:56 +00:00
For more information about this error, try `rustc --explain E0308`.