mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-15 16:53:39 +00:00
6 lines
298 B
Plaintext
6 lines
298 B
Plaintext
Derive First: #[derive(Second)] #[derive(Third, Fourth)] #[derive(Fifth)] pub struct Foo {}
|
|
Derive Second: #[derive(Third, Fourth)] #[derive(Fifth)] pub struct Foo {}
|
|
Derive Third: #[derive(Fifth)] pub struct Foo {}
|
|
Derive Fourth: #[derive(Fifth)] pub struct Foo {}
|
|
Derive Fifth: pub struct Foo {}
|