cbindgen/tests/rust/cfg_field.rs
2020-10-31 17:01:44 +01:00

12 lines
120 B
Rust

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