mirror of
https://github.com/rust-lang/rust.git
synced 2026-05-17 05:25:37 +03:00
9 lines
194 B
Rust
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,
|
|
}
|