mirror of
https://github.com/rust-lang/rust.git
synced 2024-10-31 22:41:50 +00:00
22 lines
260 B
Rust
22 lines
260 B
Rust
//@ 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() {}
|