Sign in
android
/
toolchain
/
rustc
/
43f0694b1feb1296004d84509e01177159e71be0
/
.
/
src
/
test
/
ui
/
hygiene
/
privacy-early.rs
blob: 58fc74d65a54a0bc191f9407d7c2ca45f5d8997d [
file
] [
log
] [
blame
]
// edition:2018
#![
feature
(
decl_macro
)]
mod
foo
{
fn
f
()
{}
macro f
()
{}
pub
macro m
()
{
use
f
as
g
;
//~ ERROR `f` is private, and cannot be re-exported
f
!();
}
}
fn
main
()
{
foo
::
m
!();
}