aboutsummaryrefslogtreecommitdiff
path: root/crates/ra_syntax/tests/data/parser/inline/ok/0121_match_arms_outer_attributes.rs
blob: 676db42d1a70b6996e8388dd9a76e8adb17ad0cc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
fn foo() {
    match () {
        #[cfg(feature = "some")]
        _ => (),
        #[cfg(feature = "other")]
        _ => (),
        #[cfg(feature = "many")]
        #[cfg(feature = "attributes")]
        #[cfg(feature = "before")]
        _ => (),
    }
}