rustfmt-nightly 1.4.21

Tool to find and fix Rust formatting issues
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// rustfmt-wrap_comments: true

/// Simple block
///
/// ```
/// ```
///
/// ```no_run
/// ```
///
/// ```should_panic
/// ```
///
/// ```compile_fail
/// ```
fn main() {
    println!("Hello, world!");
}