blob: 031a4825959329f11360f13940057b1c8ebcac31 [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,};