Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
imports
/
extern-prelude-extern-crate-pass.rs
blob: cab33735ba698aeb19ca39b18dcf1e3f6dfa1c6e [
file
] [
log
] [
blame
] [
edit
]
//@ build-pass (FIXME(62277): could be check-pass?)
//@ aux-build:two_macros.rs
extern
crate two_macros
;
mod
m
{
fn
check
()
{
two_macros
::
m
!();
// OK
}
}
fn
main
()
{}