rust/tests/pretty/issue-68710-field-attr-proc-mac-lost.rs
2023-01-11 09:32:08 +00:00

18 lines
203 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,
};