rust/src/libsyntax
bors 2af9aabf3a Auto merge of #29441 - Ryman:match_refactor_msg, r=alexcrichton
This helps for the case where a match, such as below:
```rust
let foo = match foo {
    Some(x) => x,
    None => 0
};
```
gets refactored to no longer need the match, but the match keyword has been left accidentally: 

```rust
let foo = match foo.unwrap_or(0);
```

This can be hard to spot as the expression grows more complex.

r? @alexcrichton
2015-10-29 06:56:52 +00:00
..
2015-10-28 17:23:28 -05:00
2015-10-13 06:01:31 +03:00
2015-10-27 21:55:04 +02:00
2015-10-16 17:17:14 +03:00