rust/tests/ui/single_component_path_imports.fixed
2020-01-30 00:22:42 +08:00

13 lines
230 B
Rust

// run-rustfix
// compile-flags: --edition 2018
#![warn(clippy::single_component_path_imports)]
#![allow(unused_imports)]
use serde as edres;
pub use serde;
fn main() {
regex::Regex::new(r"^\d{4}-\d{2}-\d{2}$").unwrap();
}