mirror of
https://git.proxmox.com/git/rustc
synced 2025-06-05 06:11:03 +00:00
7 lines
123 B
Rust
7 lines
123 B
Rust
#![feature(rustc_attrs)]
|
|
|
|
#[cfg_attr(any(rpass2, rpass3), doc = "Some comment")]
|
|
pub struct Foo;
|
|
|
|
pub struct Wrapper(Foo);
|