2021-06-07 14:25:19 -05:00
|
|
|
error[E0308]: mismatched types
|
2020-06-08 18:12:01 -05:00
|
|
|
--> $DIR/resume-arg-late-bound.rs:15:5
|
|
|
|
|
|
|
|
|
LL | test(gen);
|
2021-06-07 14:25:19 -05:00
|
|
|
| ^^^^^^^^^ one type is more general than the other
|
|
|
|
|
|
|
|
|
= note: expected type `for<'a> Generator<&'a mut bool>`
|
|
|
|
found type `Generator<&mut bool>`
|
2020-06-08 18:12:01 -05:00
|
|
|
|
|
|
|
error: aborting due to previous error
|
|
|
|
|
2021-06-07 14:25:19 -05:00
|
|
|
For more information about this error, try `rustc --explain E0308`.
|