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