blob: cfb24fc2c665c04166b5fe998db5256d6a06451f [file] [log] [blame] [edit]
#[derive(Clone)]
pub struct Struct;
pub mod dep_mod1 {
pub struct Fields {
/// [crate::Struct::clone]
pub field: u8,
}
}
pub mod dep_mod2 {
pub enum Fields {
V {
/// [crate::Struct::clone]
field: u8,
},
}
}