rust/tests/target/issue-3055/empty-code-block.rs

19 lines
204 B
Rust

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