rust/tests/ui/privacy/pub-priv-dep/auxiliary/priv_dep.rs

12 lines
119 B
Rust

pub struct OtherType;
pub trait OtherTrait {}
#[macro_export]
macro_rules! m {
() => {};
}
pub enum E {
V1
}