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