logo
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//! Allow attrubutes in `match` arms.
//!
//! # Note
//! ```rust
//! match x {
//!    #[attr]
//!    Thing => {}
//!
//!    #[attr]
//!    Foo | Bar => {}
//!
//!    #[attr]
//!    _ => {}
//! }
//! ```
//!
//! [RFC: 0049-match-arm-attributes](https://github.com/nox/rust-rfcs/blob/master/text/0049-match-arm-attributes.md)