rust/tests/source/issue-4984/multiple_comments_within.rs
2021-10-05 22:29:23 -05:00

9 lines
194 B
Rust

#[derive(
/* ---------- Some really important comment that just had to go inside the derive --------- */
Debug, Clone,/* Another comment */Eq, PartialEq,
)]
struct Foo {
a: i32,
b: T,
}