rust-clippy/tests/ui/single_component_path_imports.fixed

34 lines
503 B
Rust
Raw Normal View History

2020-01-29 16:22:42 +00:00
// run-rustfix
#![warn(clippy::single_component_path_imports)]
#![allow(unused_imports)]
use serde as edres;
pub use serde;
macro_rules! m {
() => {
use regex;
};
}
2020-01-29 16:22:42 +00:00
fn main() {
regex::Regex::new(r"^\d{4}-\d{2}-\d{2}$").unwrap();
// False positive #5154, shouldn't trigger lint.
m!();
2020-01-29 16:22:42 +00:00
}
2021-03-28 07:35:44 +00:00
mod hello_mod {
#[allow(dead_code)]
fn hello_mod() {}
}
2021-04-04 12:21:02 +00:00
mod hi_mod {
use self::regex::{Regex, RegexSet};
use regex;
#[allow(dead_code)]
fn hi_mod() {}
}