mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-10 15:14:29 +00:00
20 lines
380 B
Rust
20 lines
380 B
Rust
#![warn(clippy::single_component_path_imports)]
|
|
#![allow(unused_imports)]
|
|
|
|
// #7106: use statements exporting a macro within a crate should not trigger lint
|
|
// #7923: normal `use` statements of macros should also not trigger the lint
|
|
|
|
macro_rules! m1 {
|
|
() => {};
|
|
}
|
|
pub(crate) use m1; // ok
|
|
|
|
macro_rules! m2 {
|
|
() => {};
|
|
}
|
|
use m2; // ok
|
|
|
|
fn main() {
|
|
m1!();
|
|
m2!();
|
|
}
|