rust/rustfmt-core/tests/target/markdown-comment.rs
2018-02-13 19:39:37 +09:00

12 lines
164 B
Rust

//! hello world
//! hello world
/// hello world
/// hello world
fn foo() {
// hello world
// hello world
let x = 3;
println!("x = {}", x);
}