cfg_field.rs 120 B

1234567891011
  1. struct Foo {
  2. #[cfg(windows)]
  3. x: i32,
  4. }
  5. pub fn foo() {
  6. Foo {
  7. #[cfg(windows)]
  8. x: 0,
  9. };
  10. }