It would be useful to be able to do the following to conditionally clone a variable (`x`) based on any `cfg` attribute ```rust glib::clone!( #[cfg(feature = "...")] #[strong] x, ... ) ```