DEBSOURCES
Skip Quicknav
sources / rust-cbindgen / 0.27.0-2 / tests / rust / cfg_field.rs
1234567891011
struct Foo { #[cfg(windows)] x: i32, } pub fn foo() { Foo { #[cfg(windows)] x: 0, }; }