]> git.lizzy.rs Git - rust.git/blob - crates/syntax/test_data/parser/inline/ok/0121_match_arms_outer_attributes.rs
Merge #7321
[rust.git] / crates / syntax / test_data / parser / inline / ok / 0121_match_arms_outer_attributes.rs
1 fn foo() {
2     match () {
3         #[cfg(feature = "some")]
4         _ => (),
5         #[cfg(feature = "other")]
6         _ => (),
7         #[cfg(feature = "many")]
8         #[cfg(feature = "attributes")]
9         #[cfg(feature = "before")]
10         _ => (),
11     }
12 }