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