mirror of
https://github.com/zerotier/ZeroTierOne.git
synced 2025-07-21 18:02:50 +02:00
11 lines
120 B
Rust
11 lines
120 B
Rust
struct Foo {
|
|
#[cfg(windows)]
|
|
x: i32,
|
|
}
|
|
|
|
pub fn foo() {
|
|
Foo {
|
|
#[cfg(windows)]
|
|
x: 0,
|
|
};
|
|
}
|