rust/tests/pretty/issue-68710-field-attr-proc...

18 lines
204 B
Rust

//@ pp-exact
fn main() {}
struct C {
field: u8,
}
#[allow()]
const C: C =
C {
#[cfg(debug_assertions)]
field: 0,
#[cfg(not(debug_assertions))]
field: 1,
};