blob: ede2bc0d035f5cd5a095d78eac7489e8a202c84f [file] [log] [blame]
// rustfmt-wrap_comments: true
// Preserve two trailing whitespaces in doc comment,
// but trim any whitespaces in normal comment.
//! hello world
//! hello world
/// hello world
/// hello world
/// hello world
fn foo() {
// hello world
// hello world
let x = 3;
println!("x = {}", x);
}