2018-01-31 23:28:20 -06:00

12 lines
120 B
Rust

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