13 lines
406 B
Plaintext
13 lines
406 B
Plaintext
|
error[E0308]: mismatched types
|
||
|
--> $DIR/liveness-closure-require-ret.rs:12:37
|
||
|
|
|
||
|
LL | fn main() { println!("{}", force(|| {})); } //~ ERROR mismatched types
|
||
|
| ^^ expected isize, found ()
|
||
|
|
|
||
|
= note: expected type `isize`
|
||
|
found type `()`
|
||
|
|
||
|
error: aborting due to previous error
|
||
|
|
||
|
For more information about this error, try `rustc --explain E0308`.
|