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