rust/tests/ui/suggestions/return-closures.stderr

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

28 lines
827 B
Plaintext
Raw Permalink Normal View History

2022-08-25 20:25:56 -05:00
error[E0308]: mismatched types
2022-08-27 23:11:57 -05:00
--> $DIR/return-closures.rs:3:5
2022-08-25 20:25:56 -05:00
|
LL | fn foo() {
| - help: try adding a return type: `-> impl FnOnce(&i32) -> i32`
2022-08-27 23:11:57 -05:00
LL |
2022-08-25 20:25:56 -05:00
LL | |x: &i32| 1i32
| ^^^^^^^^^^^^^^ expected `()`, found closure
|
= note: expected unit type `()`
found closure `{closure@$DIR/return-closures.rs:3:5: 3:14}`
2022-08-25 20:25:56 -05:00
2022-08-27 23:11:57 -05:00
error[E0308]: mismatched types
--> $DIR/return-closures.rs:9:5
|
LL | fn bar(i: impl Sized) {
| - help: a return type might be missing here: `-> _`
2022-08-27 23:11:57 -05:00
LL |
LL | || i
| ^^^^ expected `()`, found closure
|
= note: expected unit type `()`
found closure `{closure@$DIR/return-closures.rs:9:5: 9:7}`
2022-08-27 23:11:57 -05:00
error: aborting due to 2 previous errors
2022-08-25 20:25:56 -05:00
For more information about this error, try `rustc --explain E0308`.