12 lines
120 B
Rust
12 lines
120 B
Rust
struct Foo {
|
|
#[cfg(windows)]
|
|
x: i32,
|
|
}
|
|
|
|
pub fn foo() {
|
|
Foo {
|
|
#[cfg(windows)]
|
|
x: 0,
|
|
};
|
|
}
|