mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-14 04:15:05 +00:00
14 lines
155 B
Rust
14 lines
155 B
Rust
//@ revisions: rpass1 rpass2
|
|
|
|
#[cfg(rpass1)]
|
|
pub trait Something {
|
|
fn foo();
|
|
}
|
|
|
|
#[cfg(rpass2)]
|
|
pub struct Something {
|
|
pub foo: u8,
|
|
}
|
|
|
|
fn main() {}
|