rust/tests/target/comment.rs
Kevin Yeh 4d7de5a16e Support single-line functions
By default, places functions with empty bodies on one line.
If the function has only one expression or statement that fits on one line, the 'fn_single_line' option can be used.
2015-11-19 14:23:56 -06:00

44 lines
1.3 KiB
Rust

// rustfmt-wrap_comments: true
//! Doc comment
fn test() {
// comment
// comment2
code(); /* leave this comment alone!
* ok? */
// Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec a
// diam lectus. Sed sit amet ipsum mauris. Maecenas congue ligula ac quam
// viverra nec consectetur ante hendrerit. Donec et mollis dolor.
// Praesent et diam eget libero egestas mattis sit amet vitae augue. Nam
// tincidunt congue enim, ut porta lorem lacinia consectetur. Donec ut
// libero sed arcu vehicula ultricies a non tortor. Lorem ipsum dolor sit
// amet, consectetur adipiscing elit. Aenean ut gravida lorem. Ut turpis
// felis, pulvinar a semper sed, adipiscing id dolor.
// Very looooooooooooooooooooooooooooooooooooooooooooooooooooooooong comment
// that should be split
// println!("{:?}", rewrite_comment(subslice,
// false,
// comment_width,
// self.block_indent,
// self.config)
// .unwrap());
funk(); //dontchangeme
// or me
}
/// test123
fn doc_comment() { }
fn chains() {
foo.bar(|| {
let x = 10;
// comment
x
})
}