rust-clippy/tests/ui/single_component_path_imports.rs
2020-03-11 06:35:07 +09:00

21 lines
345 B
Rust

// run-rustfix
// edition:2018
#![warn(clippy::single_component_path_imports)]
#![allow(unused_imports)]
use regex;
use serde as edres;
pub use serde;
macro_rules! m {
() => {
use regex;
};
}
fn main() {
regex::Regex::new(r"^\d{4}-\d{2}-\d{2}$").unwrap();
// False positive #5154, shouldn't trigger lint.
m!();
}