2017-01-15 19:50:27 -06:00
|
|
|
// rustfmt-normalize_comments: true
|
2015-11-09 13:03:01 -06:00
|
|
|
// rustfmt-wrap_comments: true
|
|
|
|
|
2015-10-19 14:41:47 -05:00
|
|
|
//! Doc comment
|
|
|
|
fn test() {
|
2015-12-07 22:04:40 -06:00
|
|
|
//! Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec a diam
|
|
|
|
//! lectus. Sed sit amet ipsum mauris. Maecenas congue ligula ac quam
|
|
|
|
|
2015-10-19 14:41:47 -05:00
|
|
|
// comment
|
|
|
|
// comment2
|
|
|
|
|
2017-01-16 17:01:10 -06:00
|
|
|
code(); // leave this comment alone!
|
2017-09-05 02:51:54 -05:00
|
|
|
// ok?
|
2015-10-19 14:41:47 -05:00
|
|
|
|
|
|
|
// 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());
|
|
|
|
|
2017-01-16 17:01:10 -06:00
|
|
|
funk(); // dontchangeme
|
2017-09-05 02:51:54 -05:00
|
|
|
// or me
|
2017-05-03 23:52:35 -05:00
|
|
|
|
|
|
|
// #1388
|
2017-07-05 05:20:25 -05:00
|
|
|
const EXCEPTION_PATHS: &'static [&'static str] = &[
|
|
|
|
// std crates
|
|
|
|
"src/libstd/sys/", // Platform-specific code for std lives here.
|
|
|
|
"src/bootstrap",
|
|
|
|
];
|
2015-10-19 14:41:47 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
/// test123
|
2015-11-19 20:11:32 -06:00
|
|
|
fn doc_comment() {}
|
2015-10-19 14:41:47 -05:00
|
|
|
|
|
|
|
fn chains() {
|
|
|
|
foo.bar(|| {
|
2017-06-11 23:01:41 -05:00
|
|
|
let x = 10;
|
|
|
|
// comment
|
|
|
|
x
|
|
|
|
})
|
2015-10-19 14:41:47 -05:00
|
|
|
}
|
2015-12-07 22:04:40 -06:00
|
|
|
|
2016-07-09 08:41:28 -05:00
|
|
|
fn issue_1086() {
|
|
|
|
//
|
|
|
|
}
|
|
|
|
|
2015-12-07 22:04:40 -06:00
|
|
|
// random comment
|
2016-01-26 19:18:05 -06:00
|
|
|
|
|
|
|
fn main() {
|
|
|
|
// Test
|
|
|
|
}
|
2017-08-10 09:10:41 -05:00
|
|
|
|
|
|
|
// #1643
|
|
|
|
fn some_fn() // some comment
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
fn some_fn1()
|
|
|
|
// some comment
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
fn some_fn2() // some comment
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
fn some_fn3() // some comment some comment some comment some comment some comment some comment so
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
fn some_fn4()
|
2017-08-27 10:18:17 -05:00
|
|
|
// some comment some comment some comment some comment some comment some comment
|
|
|
|
// some comment
|
2017-08-10 09:10:41 -05:00
|
|
|
{
|
|
|
|
}
|