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