rust/src/test/pretty/issue-68710-field-attr-proc...

17 lines
190 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,};