]> git.proxmox.com Git - rustc.git/blob - src/tools/rustfmt/tests/target/issue-4984/multiple_comments_within.rs
New upstream version 1.58.1+dfsg1
[rustc.git] / src / tools / rustfmt / tests / target / issue-4984 / multiple_comments_within.rs
1 #[derive(
2 /* ---------- Some really important comment that just had to go inside the derive --------- */
3 Debug,
4 Clone,
5 /* Another comment */ Eq,
6 PartialEq,
7 )]
8 struct Foo {
9 a: i32,
10 b: T,
11 }