Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
incremental
/
issue-69596.rs
blob: 00d0d2b64a4f09d8f156c3cc6c109269100609bf [
file
] [
log
] [
blame
] [
edit
]
//@ revisions: rpass1 rpass2
#![
allow
(
unused_imports
)]
#[
macro_export
]
macro_rules
!
a_macro
{
()
=>
{};
}
#[
cfg
(
rpass1
)]
use
a_macro
as
same_name
;
mod
same_name
{}
mod
needed_mod
{
fn
_crash
()
{
use
super
::
same_name
;
}
}
fn
main
()
{}