Sign in
fuchsia
/
third_party
/
rust
/
2fcea9fb68c8e04f10e5cb15bbfb486de9800afa
/
.
/
tests
/
ui
/
privacy
/
pub-priv-dep
/
auxiliary
/
priv_dep.rs
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
;