trisquel-icecat/icecat/third_party/cbindgen/tests/rust/cfg_field.rs

11 lines
120 B
Rust

struct Foo {
#[cfg(windows)]
x: i32,
}
pub fn foo() {
Foo {
#[cfg(windows)]
x: 0,
};
}