rust/tests/ui/single_component_path_imports.rs

35 lines
539 B
Rust
Raw Normal View History

2020-01-29 17:22:42 +01:00
// run-rustfix
2020-03-10 22:35:07 +01:00
// edition:2018
2020-01-29 17:22:42 +01:00
#![warn(clippy::single_component_path_imports)]
#![allow(unused_imports)]
use regex;
use serde as edres;
pub use serde;
macro_rules! m {
() => {
use regex;
};
}
2020-01-29 17:22:42 +01: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 17:22:42 +01:00
}
2021-03-28 09:35:44 +02:00
mod hello_mod {
use regex;
#[allow(dead_code)]
fn hello_mod() {}
}
2021-04-04 14:21:02 +02:00
mod hi_mod {
use self::regex::{Regex, RegexSet};
use regex;
#[allow(dead_code)]
fn hi_mod() {}
}