rustfmt-core 0.4.0

A core library of rustfmt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// rustfmt-normalize_comments: true
// FIXME(#919)

trait NameC {
    // comment
}
struct FooC { /* comment */ }
enum MooC {
    // comment
}
mod BarC {
    // comment
}
extern "C" {
    // comment
}