Sign in
android
/
toolchain
/
rustc
/
635618df8991b8a005e435895ea0b1eee7e3faf0
/
.
/
tests
/
ui
/
imports
/
extern-prelude-extern-crate-shadowing.rs
blob: 9e69a27d7c4ce809380b67c3501480801363625d [
file
] [
log
] [
blame
]
// 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
()
{}