a7801aac27
Closes 3987 It's unclear which commit resolved this issue, but it can no longer be reproduced.
27 lines
415 B
Rust
27 lines
415 B
Rust
// rustfmt-format_macro_bodies: false
|
|
|
|
// with comments
|
|
macro_rules! macros {
|
|
() => {{
|
|
Struct {
|
|
field: (
|
|
42 + //comment 1
|
|
42
|
|
//comment 2
|
|
),
|
|
};
|
|
}};
|
|
}
|
|
|
|
// without comments
|
|
macro_rules! macros {
|
|
() => {{
|
|
Struct {
|
|
field: (
|
|
42 +
|
|
42
|
|
),
|
|
};
|
|
}};
|
|
}
|