error[E0308]: `match` arms have incompatible types
--> tests/fail/expr/match.rs:4:14
|
2 | one_assert::assert!(match 0 {
| _________________________-
3 | | 1 => true,
| | ---- this is found to be of type `bool`
4 | | x => x + 1,
| | ^^^^^ expected `bool`, found integer
5 | | });
| |_____- `match` arms have incompatible types