rust/src/test/ui/hrtb/hrtb-exists-forall-fn.stderr

13 lines
425 B
Plaintext
Raw Normal View History

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