rust/tests/ui/higher-ranked/trait-bounds/hrtb-exists-forall-fn.stderr

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

15 lines
468 B
Plaintext
Raw Normal View History

error[E0308]: mismatched types
2018-11-19 10:47:34 -05:00
--> $DIR/hrtb-exists-forall-fn.rs:17:34
|
2019-03-09 15:03:44 +03:00
LL | let _: for<'b> fn(&'b u32) = foo();
| ------------------- ^^^^^ one type is more general than the other
| |
| expected due to this
|
= note: expected fn pointer `for<'b> fn(&'b _)`
found fn pointer `fn(&_)`
error: aborting due to 1 previous error
For more information about this error, try `rustc --explain E0308`.