rust/src/test/ui/issues/issue-24036.stderr

33 lines
1.2 KiB
Plaintext
Raw Normal View History

error[E0308]: mismatched types
2018-12-25 09:56:47 -06:00
--> $DIR/issue-24036.rs:3:9
|
2018-02-22 18:42:32 -06:00
LL | x = |c| c + 1;
| ^^^^^^^^^ expected closure, found a different closure
|
2018-12-25 09:56:47 -06:00
= note: expected type `[closure@$DIR/issue-24036.rs:2:17: 2:26]`
found type `[closure@$DIR/issue-24036.rs:3:9: 3:18]`
= note: no two closures, even if identical, have the same type
= help: consider boxing your closure and/or using it as a trait object
error[E0308]: match arms have incompatible types
2018-12-25 09:56:47 -06:00
--> $DIR/issue-24036.rs:8:13
|
2018-02-22 18:42:32 -06:00
LL | let x = match 1usize {
| _____________^
2018-02-22 18:42:32 -06:00
LL | | //~^ ERROR match arms have incompatible types
LL | | 1 => |c| c + 1,
LL | | 2 => |c| c - 1,
| | --------- match arm with an incompatible type
2018-02-24 17:01:39 -06:00
LL | | _ => |c| c - 1
2018-02-22 18:42:32 -06:00
LL | | };
| |_____^ expected closure, found a different closure
|
2018-12-25 09:56:47 -06:00
= note: expected type `[closure@$DIR/issue-24036.rs:10:14: 10:23]`
found type `[closure@$DIR/issue-24036.rs:11:14: 11:23]`
= note: no two closures, even if identical, have the same type
= help: consider boxing your closure and/or using it as a trait object
error: aborting due to 2 previous errors
2018-03-03 08:59:40 -06:00
For more information about this error, try `rustc --explain E0308`.