10 lines
107 B
Rust
10 lines
107 B
Rust
// rustfmt-wrap_comments: true
|
|
|
|
/** foobar */
|
|
const foo1: u32 = 0;
|
|
|
|
/**
|
|
* foobar
|
|
*/
|
|
const foo2: u32 = 0;
|