mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 06:51:58 +00:00
18 lines
339 B
Rust
18 lines
339 B
Rust
|
// run-rustfix
|
||
|
#![allow(unused, nonstandard_style)]
|
||
|
mod m {
|
||
|
#[macro_export]
|
||
|
macro_rules! nu {
|
||
|
{} => {};
|
||
|
}
|
||
|
|
||
|
pub struct other_item;
|
||
|
|
||
|
use ::nu;
|
||
|
pub use self::{other_item as _};
|
||
|
//~^ ERROR unresolved import `self::nu` [E0432]
|
||
|
//~| HELP a macro with this name exists at the root of the crate
|
||
|
}
|
||
|
|
||
|
fn main() {}
|