11 lines
152 B
Rust
11 lines
152 B
Rust
|
// rustfmt-version: Two
|
||
|
fn main() {
|
||
|
match a {
|
||
|
_ =>
|
||
|
// comment with =>
|
||
|
{
|
||
|
println!("A")
|
||
|
}
|
||
|
}
|
||
|
}
|