rust/tests/target/issue-6147/case_rustfmt_v1.rs

21 lines
272 B
Rust
Raw Normal View History

// rustfmt-version: One
2024-04-13 10:57:49 -05:00
pub fn main() {
2024-04-13 11:03:10 -05:00
let a = Some(12);
2024-04-13 10:57:49 -05:00
match a {
#![attr1]
#![attr2]
#![attr3]
2024-04-13 11:03:10 -05:00
_ => None,
2024-04-13 10:57:49 -05:00
}
{
match a {
#![attr1]
#![attr2]
#![attr3]
2024-04-13 11:03:10 -05:00
_ => None,
2024-04-13 10:57:49 -05:00
}
}
}