blob: 3784a3874503bb50aa6c714b7705802c6e4bf585 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
// rustfmt-normalize_comments: true
trait NameC {
// comment
}
struct FooC {
// comment
}
enum MooC {
// comment
}
mod BarC { // comment
}
extern "C" {
// comment
}
|