blob: d389f8c861a410b27f817b51304b078a0eb7e309 [file] [log] [blame]
pub struct OtherType;
pub trait OtherTrait {}
impl OtherTrait for OtherType {}
#[macro_export]
macro_rules! m {
() => {};
}
pub enum E {
V1
}
struct PrivType;
pub type Unit = ();
pub type PubPub = OtherType;
pub type PubPriv = PrivType;